URI: 
       iso646.h - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
       iso646.h (238B)
       ---
            1 #ifndef _ISO646_H
            2 #define _ISO646_H
            3 
            4 #define and    &&
            5 #define and_eq &=
            6 #define bitand &
            7 #define bitor  |
            8 #define compl  ~
            9 #define not    !
           10 #define not_eq !=
           11 #define or     ||
           12 #define or_eq  |=
           13 #define xor    ^
           14 #define xor_eq ^=
           15 
           16 #endif