From fe83840aa8e672c6391fa9642516e41a144340c5 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Sat, 9 Feb 2019 19:27:55 -0500 Subject: unbreak --- src/nonstd/SYSCALL.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nonstd/SYSCALL.c') diff --git a/src/nonstd/SYSCALL.c b/src/nonstd/SYSCALL.c index 4c04ab1b..8f91d870 100644 --- a/src/nonstd/SYSCALL.c +++ b/src/nonstd/SYSCALL.c @@ -1,9 +1,9 @@ #include -#define SYSCALL(_name, _type, ...) +#define SYSCALL(_name, _type, _args) \ static int _scno = -2; \ if (_scno == -2) { _scno = ((syscall_lookup_t)__libc(SYSCALL_LOOKUP))(_name); } \ - _type _ret = __syscall(_scno, __VA_ARGS__); \ + _type _ret = __syscall(_scno, _args); \ if (_ret < 0) { \ errno = -_ret; \ return -1; \ -- cgit v1.2.1