dl-syscalls.h 250 B

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