diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2017-12-22 18:54:34 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2017-12-22 18:54:34 +0100 |
commit | 240000f893102e6e6a24abb0986e64da3a510570 (patch) | |
tree | b4cd1390afe05d20381918c1062aa273fef9b603 /test/misc/tst-syscall0.c | |
parent | b227e47b1f7bf4a1adcfea823e2efc7be40d171b (diff) |
fix compile errors with alpha
Diffstat (limited to 'test/misc/tst-syscall0.c')
-rw-r--r-- | test/misc/tst-syscall0.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/test/misc/tst-syscall0.c b/test/misc/tst-syscall0.c index ebfca95..890eeb4 100644 --- a/test/misc/tst-syscall0.c +++ b/test/misc/tst-syscall0.c @@ -2,10 +2,16 @@ #include <unistd.h> #include <sys/syscall.h> +#ifndef SYS_getpid +#define _SYS_call0 SYS_getxpid +#else +#define _SYS_call0 SYS_getpid +#endif + int main() { int pid; - pid = syscall(SYS_getpid); + pid = syscall(_SYS_call0); if (pid > 0) { printf("syscall(SYS_getpid) says %d\n", pid); return 0; |