ld_syscalls.h 245 B

1234567
  1. /* Define the __set_errno macro as nothing so that we don't bother
  2. * setting errno, which is important since we make system calls
  3. * before the errno symbol is dynamicly linked. */
  4. #define __set_errno(X) {(void)(X);}
  5. #include "sys/syscall.h"