1
0

errno.h 210 B

123456789101112131415161718
  1. #ifndef _ERRNO_H
  2. #define _ERRNO_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include <bits/errno.h>
  7. extern int *__errno_location(void);
  8. #define errno (*__errno_location())
  9. #ifdef __cplusplus
  10. }
  11. #endif
  12. #endif