errno.h 236 B

1234567891011121314151617
  1. #ifndef _BITS_ERRNO_H
  2. #define _BITS_ERRNO_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #define ENOTSUP EOPNOTSUPP
  7. //TODO extern __thread int errno;
  8. extern int errno;
  9. #ifdef __cplusplus
  10. } // extern "C"
  11. #endif
  12. #endif /* _BITS_ERRNO_H */