iso646.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* Copyright (C) 1997-2019 Free Software Foundation, Inc.
  2. This file is part of GCC.
  3. GCC is free software; you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation; either version 3, or (at your option)
  6. any later version.
  7. GCC is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. Under Section 7 of GPL version 3, you are granted additional
  12. permissions described in the GCC Runtime Library Exception, version
  13. 3.1, as published by the Free Software Foundation.
  14. You should have received a copy of the GNU General Public License and
  15. a copy of the GCC Runtime Library Exception along with this program;
  16. see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
  17. <http://www.gnu.org/licenses/>. */
  18. /*
  19. * ISO C Standard: 7.9 Alternative spellings <iso646.h>
  20. */
  21. #ifndef _ISO646_H
  22. #define _ISO646_H
  23. #ifndef __cplusplus
  24. #define and &&
  25. #define and_eq &=
  26. #define bitand &
  27. #define bitor |
  28. #define compl ~
  29. #define not !
  30. #define not_eq !=
  31. #define or ||
  32. #define or_eq |=
  33. #define xor ^
  34. #define xor_eq ^=
  35. #endif
  36. #endif