repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
<sys/ioccom.h>, <sys/ioctl.h>
[minix3.git]
/
include
/
iso646.h
blob
56ea2fefd1dd74e336583a0ec714b052135357c2
1
/* $NetBSD: iso646.h,v 1.1 1995/02/17 09:08:10 jtc Exp $ */
2
3
/*
4
* Written by J.T. Conklin <jtc@wimsey.com> 02/16/95.
5
* Public domain.
6
*/
7
8
#ifndef _ISO646_H_
9
#define _ISO646_H_
10
11
#define and &&
12
#define and_eq &=
13
#define bitand &
14
#define bitor |
15
#define compl ~
16
#define not !
17
#define not_eq !=
18
#define or ||
19
#define or_eq |=
20
#define xor ^
21
#define xor_eq ^=
22
23
#endif
/* !_ISO646_H_ */