1234567891011121314151617 |
- #ifndef _BITS_ERRNO_H
- #define _BITS_ERRNO_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #define ENOTSUP EOPNOTSUPP
- //TODO extern __thread int errno;
- extern int errno;
- #ifdef __cplusplus
- } // extern "C"
- #endif
- #endif /* _BITS_ERRNO_H */
|