errno.h 212 B

123456789101112
  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. #ifdef CONFIG_ERRNO_STR
  6. const char *errno_str(int errno);
  7. #endif
  8. #endif /* _ERRNO_H */