errno.h 147 B

123456789
  1. #ifndef _ERRNO_H
  2. #include <asm-generic/errno.h>
  3. extern int errno;
  4. #define __set_errno(val) do { errno = val; } while (0)
  5. #endif /* _ERRNO_H */