diff options
Diffstat (limited to 'libc/stdlib/Makefile')
-rw-r--r-- | libc/stdlib/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libc/stdlib/Makefile b/libc/stdlib/Makefile index 8514d5c4a..4d16a8585 100644 --- a/libc/stdlib/Makefile +++ b/libc/stdlib/Makefile @@ -26,13 +26,15 @@ LIBC=$(TOPDIR)libc.a DIRS = $(MALLOC) +MSRC=strto_l.c +MOBJ=strtol.o strtoul.o strto_l.o MSRC2=atexit.c MOBJ2=on_exit.o atexit.o __do_exit.o exit.o -CSRC = abort.c getenv.c mktemp.c qsort.c realpath.c strtod.c strtoul.c \ - abs.c bsearch.c mkstemp.c putenv.c rand.c setenv.c strtol.c system.c +CSRC = abort.c getenv.c mktemp.c qsort.c realpath.c strtod.c \ + abs.c bsearch.c mkstemp.c putenv.c rand.c setenv.c system.c COBJS=$(patsubst %.c,%.o, $(CSRC)) |