sparc64: add basic support
[uclibc-ng.git] / libc / sysdeps / linux / arc / syscall.c
blob5648b0e1fd35912bf93a960a106c11d8a2ef5e0f
1 /*
2 * Copyright (C) 2013 Synopsys, Inc. (www.synopsys.com)
4 * Licensed under the LGPL v2.1 or later, see the file COPYING.LIB in this tarball.
5 */
7 #include <features.h>
8 #include <errno.h>
9 #include <sys/types.h>
10 #include <sys/syscall.h>
12 extern long syscall(long int sysnum, long a, long b, long c, long d, long e, long f);
14 long syscall(long int sysnum, long a, long b, long c, long d, long e, long f)
16 return INLINE_SYSCALL_NCS(sysnum, 6, a, b, c, d, e, f);