syscalls.h 207 B

1234567
  1. extern long sys_clone(unsigned long clone_flags, unsigned long newsp,
  2. void __user *parent_tid, void __user *child_tid);
  3. #ifdef __i386__
  4. #include "syscalls_32.h"
  5. #else
  6. #include "syscalls_64.h"
  7. #endif