syscalls.h 378 B

12345678910111213
  1. #ifndef _BITS_SYSCALLS_H
  2. #define _BITS_SYSCALLS_H
  3. #ifndef _SYSCALL_H
  4. # error "Never use <bits/syscalls.h> directly; include <sys/syscall.h> instead."
  5. #endif
  6. #include <features.h>
  7. /* Do something very evil for now. Until we include our out syscall
  8. * macros, short circuit bits/syscall.h and use asm/unistd.h instead */
  9. #include <asm/unistd.h>
  10. #endif /* _BITS_SYSCALLS_H */