dl-syscalls.h 246 B

1234567
  1. /* Define the __set_errno macro as nothing so that INLINE_SYSCALL
  2. * won't set 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"