scc

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

commit 2df53810a37e09f40929c9e51c61216d1fbf6002
parent 0d2becf4987bdbfc0b81b74414c5a80de5f4f249
Author: Roberto E. Vargas Caballero <roberto.vargas@midokura.com>
Date:   Tue, 16 Aug 2022 13:16:50 +0200

libc/ctype: Add spaces between include and undef

Diffstat:
Msrc/libc/ctype/isdigit.c | 1+
Msrc/libc/ctype/islower.c | 1+
Msrc/libc/ctype/isspace.c | 1+
Msrc/libc/ctype/toupper.c | 1+
4 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/src/libc/ctype/isdigit.c b/src/libc/ctype/isdigit.c @@ -1,4 +1,5 @@ #include <ctype.h> + #undef isdigit int diff --git a/src/libc/ctype/islower.c b/src/libc/ctype/islower.c @@ -1,4 +1,5 @@ #include <ctype.h> + #undef islower int diff --git a/src/libc/ctype/isspace.c b/src/libc/ctype/isspace.c @@ -1,4 +1,5 @@ #include <ctype.h> + #undef isspace int diff --git a/src/libc/ctype/toupper.c b/src/libc/ctype/toupper.c @@ -1,4 +1,5 @@ #include <ctype.h> + #undef toupper int