scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit cd8b03339e454d34de3b9a0a1ac4d088a00c4d42
parent d5ba8097fd91eed96b9d754fbef73bced676f833
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Tue, 28 Apr 2020 17:27:21 +0200

libc: Add support for iso646.h

Diffstat:
Ainclude/iso646.h | 16++++++++++++++++
1 file changed, 16 insertions(+), 0 deletions(-)

diff --git a/include/iso646.h b/include/iso646.h @@ -0,0 +1,16 @@ +#ifndef _ISO646_H_ +#define _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