errno.h 283 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. #define errno (*__errno_location())
  8. #define program_invocation_name (*__program_invocation_name())
  9. #ifdef __cplusplus
  10. } // extern "C"
  11. #endif
  12. #endif /* _BITS_ERRNO_H */