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.

26 lines
537 B

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