errno.h 211 B

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