Leaked source code of windows server 2003
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.

24 lines
492 B

  1. // cerrno standard header
  2. #pragma once
  3. #ifndef _CERRNO_
  4. #define _CERRNO_
  5. #include <yvals.h>
  6. #ifdef _STD_USING
  7. #undef _STD_USING
  8. #include <errno.h>
  9. #define _STD_USING
  10. #else /* _STD_USING */
  11. #include <errno.h>
  12. _STD_BEGIN
  13. #ifndef errno
  14. using ::errno;
  15. #endif
  16. _STD_END
  17. #endif /* _CERRNO_ */
  18. #endif /* _STD_USING */
  19. /*
  20. * Copyright (c) 1992-2001 by P.J. Plauger. ALL RIGHTS RESERVED.
  21. * Consult your license regarding permissions and restrictions.
  22. V3.10:0009 */