syscall.h 197 B

12345678910111213141516
  1. #ifndef _SYS_SYSCALL_H
  2. #define _SYS_SYSCALL_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include <features.h>
  7. long syscall(long, ...);
  8. #include <bits/syscall.h>
  9. #ifdef __cplusplus
  10. }
  11. #endif
  12. #endif