shithub: scc

Download patch

ref: 9327b5e5cabc5ccf3144b1ba7fd1e229318c178b
parent: c614e5f509f49a792a2e586fea167032ef57928f
author: Roberto E. Vargas Caballero <[email protected]>
date: Tue Apr 28 13:27:21 EDT 2020

libc: Add support for iso646.h

--- /dev/null
+++ b/include/iso646.h
@@ -1,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