Source code of Windows XP (NT5)
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.

31 lines
406 B

  1. /*++
  2. Copyright (c) 1989-1996 Microsoft Corporation
  3. Module Name:
  4. errno.h
  5. Abstract:
  6. This module contains the implementation defined values for the POSIX error
  7. number as described in section 2.5 of IEEE P1003.1/Draft 13.
  8. --*/
  9. #ifndef _ERRNO_
  10. #define _ERRNO_
  11. #include <sys/errno.h>
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. extern int errno;
  16. #ifdef __cplusplus
  17. }
  18. #endif
  19. #endif /* _ERRNO_ */