scc

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

commit 9947311ab028bc6949e8c91c28ea5d92a2ee9928
parent 7bbb49493406d9e853655c73decdeaa5f87ee4e4
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Fri, 19 Oct 2018 15:26:41 +0100

[libc] Add rand() to the list of functions

Diffstat:
Mlib/c/target/script/objlst.mk | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/c/target/script/objlst.mk b/lib/c/target/script/objlst.mk @@ -2,7 +2,7 @@ LIBOBJ = bsearch.o qsort.o \ abs.o __abs.o labs.o __labs.o llabs.o __llabs.o \ perror.o strerror.o \ - tmpnam.o \ + rand.o tmpnam.o \ sprintf.o snprintf.o vsprintf.o vsnprintf.o \ printf.o fprintf.o vfprintf.o \ fgets.o gets.o fgetc.o fputc.o getchar.o putchar.o \