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.

25 lines
560 B

  1. /* iso646.h standard header */
  2. #pragma once
  3. #ifndef _ISO646
  4. #define _ISO646
  5. #if !defined(__cplusplus) || defined(_MSC_EXTENSIONS)
  6. #define and &&
  7. #define and_eq &=
  8. #define bitand &
  9. #define bitor |
  10. #define compl ~
  11. #define not !
  12. #define not_eq !=
  13. #define or ||
  14. #define or_eq |=
  15. #define xor ^
  16. #define xor_eq ^=
  17. #endif /* !__cplusplus || _MSC_EXTENSIONS */
  18. #endif /* _ISO646 */
  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 */