mirror of
https://github.com/corda/corda.git
synced 2025-01-08 14:03:06 +00:00
9441de4c38
This release is used in conjunction with the linux-sgx-driver Intial release: https://github.com/01org/linux-sgx-driver commit-id: 0e865ce5e6b297a787bcdc12d98bada8174be6d7 Intel-id: 33399 Signed-off-by: Angie Chinchilla <angie.v.chinchilla@intel.com>
27 lines
502 B
C
27 lines
502 B
C
/* $OpenBSD: iso646.h,v 1.3 2001/10/11 00:05:21 espie Exp $ */
|
|
/* $NetBSD: iso646.h,v 1.1 1995/02/17 09:08:10 jtc Exp $ */
|
|
|
|
/*
|
|
* Written by J.T. Conklin <jtc@wimsey.com> 02/16/95.
|
|
* Public domain.
|
|
*/
|
|
|
|
#ifndef _ISO646_H_
|
|
#define _ISO646_H_
|
|
|
|
#ifndef __cplusplus
|
|
#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 ^=
|
|
#endif
|
|
|
|
#endif /* !_ISO646_H_ */
|