scc

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

commit 4f9918f90b7d9085a912f4b38c14f8e8e4894791
parent 7127e4d2d03c76582b8140db3b86169966786adc
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Thu, 23 Feb 2017 14:45:36 +0100

[libc] Add ctype.o to the Makefile

Diffstat:
Mlibc/src/Makefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libc/src/Makefile b/libc/src/Makefile @@ -7,7 +7,7 @@ LIBCOBJ = assert.o strcpy.o strcmp.o strlen.o strchr.o \ memset.o memcpy.o memmove.o memcmp.o memchr.o \ isalnum.o isalpha.o isascii.o isblank.o iscntrl.o isdigit.o \ isgraph.o islower.o isprint.o ispunct.o isspace.o isupper.o \ - isxdigit.o toupper.o tolower.o setlocale.o \ + isxdigit.o toupper.o tolower.o ctype.o setlocale.o \ localeconv.o all: libc.a