errno.h 209 B

1234567891011121314
  1. #ifndef ERRNO_H
  2. #define ERRNO_H
  3. #include "../../include/errno.h"
  4. #ifdef __GNUC__
  5. __attribute__((const))
  6. #endif
  7. hidden int *___errno_location(void);
  8. #undef errno
  9. #define errno (*___errno_location())
  10. #endif