errno.h 208 B

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