author | Rich Felker <dalias@aerifal.cx> | 2011年03月19日 18:51:42 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011年03月19日 18:51:42 -0400 |
commit | d00ff2950eacc375d57e44d65c7697f636c67625 (patch) | |
tree | 33949c7eb7e75251b3a598f964db558604caf7c6 /include/sys/syscall.h | |
parent | 56fd65e861e0ad0ea7677211f8258a8f64233f26 (diff) | |
download | musl-d00ff2950eacc375d57e44d65c7697f636c67625.tar.gz |
-rw-r--r-- | include/sys/syscall.h | 16 |
diff --git a/include/sys/syscall.h b/include/sys/syscall.h new file mode 100644 index 00000000..a8fec678 --- /dev/null +++ b/include/sys/syscall.h @@ -0,0 +1,16 @@ +#ifndef _SYS_SYSCALL_H +#define _SYS_SYSCALL_H +#ifdef __cplusplus +extern "C" { +#endif + + +#include <bits/syscall.h> + +long syscall(long, ...); + + +#ifdef __cplusplus +} +#endif +#endif |