[BACK]Return to iso646.h CVS log [TXT][DIR] Up to [local] / src / include

Annotation of src/include/iso646.h, Revision 1.2

1.2     ! niklas      1: /*     $OpenBSD: iso646.h,v 1.1 1995/02/17 09:08:10 jtc Exp $  */
1.1       deraadt     2: /*     $NetBSD: iso646.h,v 1.1 1995/02/17 09:08:10 jtc Exp $   */
                      3:
                      4: /*
                      5:  * Written by J.T. Conklin <jtc@wimsey.com> 02/16/95.
                      6:  * Public domain.
                      7:  */
                      8:
                      9: #ifndef _ISO646_H_
                     10: #define _ISO646_H_
                     11:
                     12: #define and    &&
                     13: #define and_eq &=
                     14: #define bitand &
                     15: #define bitor  |
                     16: #define compl  ~
                     17: #define not    !
                     18: #define not_eq !=
                     19: #define or     ||
                     20: #define or_eq  |=
                     21: #define xor    ^
                     22: #define xor_eq ^=
                     23:
                     24: #endif /* !_ISO646_H_ */