You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
174B

  1. #ifndef __ERRNO_H__
  2. #define __ERRNO_H__
  3. #ifndef __error_t_defined
  4. typedef int error_t;
  5. #define __error_t_defined 1
  6. #endif
  7. #include <sys/errno.h>
  8. #endif /* !__ERRNO_H__ */