summaryrefslogtreecommitdiff
path: root/src/nonstd/SYSCALL.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-02-28 20:28:55 -0500
committerJakob Kaivo <jkk@ung.org>2019-02-28 20:28:55 -0500
commited374a822d29d53b82f7aa5338ddc88ac844fe19 (patch)
tree8ff0b810524ffe86a830ffb6c9892e0dbcee09cd /src/nonstd/SYSCALL.c
parentf9506b4b0c6aedbc38a10fbf432ea3b04465763f (diff)
include <locale.h> in <nonstd/locale.h>
Diffstat (limited to 'src/nonstd/SYSCALL.c')
-rw-r--r--src/nonstd/SYSCALL.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nonstd/SYSCALL.c b/src/nonstd/SYSCALL.c
index b5cab01c..4f4ce61a 100644
--- a/src/nonstd/SYSCALL.c
+++ b/src/nonstd/SYSCALL.c
@@ -2,7 +2,7 @@
#define SYSCALL(_name, _type, _err, _a1, _a2, _a3, _a4, _a5, _a6) \
static int _scno = -2; \
- if (_scno == -2) { _scno = ((syscall_lookup_t)__libc(SYSCALL_LOOKUP))(_name); } \
+ if (_scno == -2) { _scno = ((long (*)(const char *))__libc(SYSCALL_LOOKUP))(_name); } \
long _ret = __syscall(_scno, _a1, _a2, _a3, _a4, _a5, _a6); \
if (_ret < 0) { \
errno = -_ret; \