From 997fd49c81a86696db6f62ce8c5bdde038c7cebb Mon Sep 17 00:00:00 2001 From: thing1 Date: Tue, 24 Sep 2024 11:30:01 +0100 Subject: removed the guest book because it wasnt working --- comp/lucas-standen-NEA/code2/stdlib/Makefile | 4 ++-- comp/lucas-standen-NEA/code2/stdlib/zpylib.h | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'comp/lucas-standen-NEA/code2/stdlib') diff --git a/comp/lucas-standen-NEA/code2/stdlib/Makefile b/comp/lucas-standen-NEA/code2/stdlib/Makefile index d915d38..ff46d14 100644 --- a/comp/lucas-standen-NEA/code2/stdlib/Makefile +++ b/comp/lucas-standen-NEA/code2/stdlib/Makefile @@ -1,9 +1,9 @@ CC=cc -CLFAGS=-O0 -ggdb +CFLAGS=-O0 -ggdb stdlib: cd String && make - ${CC} *.c -c ${CFLAGS} + ${CC} zpylib.c -c -o zpylib.o ${CFLAGS} clean: rm -rf *.o diff --git a/comp/lucas-standen-NEA/code2/stdlib/zpylib.h b/comp/lucas-standen-NEA/code2/stdlib/zpylib.h index 808ef55..6b95949 100644 --- a/comp/lucas-standen-NEA/code2/stdlib/zpylib.h +++ b/comp/lucas-standen-NEA/code2/stdlib/zpylib.h @@ -1,7 +1,9 @@ #include #include +#include void printstr(char *str); +void printchar(char c); void printint(int i); void printfloat(double f); char *readstr(); -- cgit v1.2.3