SecBSD 1.3 -current: The Digital Resistance. A belief in the importance of privacy and the right to secure communication.

This commit is contained in:
purplerain 2023-04-30 01:15:27 +00:00
commit 95114fbda2
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
91022 changed files with 33913249 additions and 0 deletions

26
include/iso646.h Normal file
View file

@ -0,0 +1,26 @@
/* $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_ */