errno.h 358 B

123456789101112131415161718
  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. #define program_invocation_short_name (*__program_invocation_short_name())
  10. #ifdef __cplusplus
  11. } // extern "C"
  12. #endif
  13. #endif /* _BITS_ERRNO_H */