2013-12-06 12:04:52 +01:00
|
|
|
/* $NetBSD: iso646.h,v 1.2 2013/04/26 10:58:45 joerg Exp $ */
|
2011-02-14 20:36:03 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Written by J.T. Conklin <jtc@wimsey.com> 02/16/95.
|
|
|
|
* Public domain.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ISO646_H_
|
|
|
|
#define _ISO646_H_
|
|
|
|
|
2013-12-06 12:04:52 +01:00
|
|
|
#ifndef __cplusplus
|
2011-02-14 20:36:03 +01:00
|
|
|
#define and &&
|
|
|
|
#define and_eq &=
|
|
|
|
#define bitand &
|
|
|
|
#define bitor |
|
|
|
|
#define compl ~
|
|
|
|
#define not !
|
|
|
|
#define not_eq !=
|
|
|
|
#define or ||
|
|
|
|
#define or_eq |=
|
|
|
|
#define xor ^
|
|
|
|
#define xor_eq ^=
|
2013-12-06 12:04:52 +01:00
|
|
|
#endif
|
2011-02-14 20:36:03 +01:00
|
|
|
|
|
|
|
#endif /* !_ISO646_H_ */
|