33 lines
536 B
C
Executable file
33 lines
536 B
C
Executable file
/*
|
|
<iso646.h> - alternative spellings
|
|
|
|
This header is a part of fenlibc,
|
|
a component of the Fenix Operating System
|
|
|
|
This package is free software. Please see the
|
|
file COPYING in the source distribution for
|
|
more information.
|
|
*/
|
|
|
|
/*
|
|
Why is this a thing? It's stupid. Who uses this?
|
|
|
|
-Kat
|
|
*/
|
|
|
|
#ifndef _FLC_ISO646_H
|
|
#define _FLC_ISO646_H
|
|
|
|
#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
|