diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-08-24 21:05:39 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-08-24 21:05:39 +0000 |
commit | fa5a15eeb283a27ea4f03ee581856930e60a7ca0 (patch) | |
tree | fcbc3b65c4653105ebc54f2c756851379add0237 /libc/stdlib/Makefile | |
parent | fb35042521e6e4b0dcee32ca7e0ce33b18f9523d (diff) | |
download | uClibc-alpine-fa5a15eeb283a27ea4f03ee581856930e60a7ca0.tar.bz2 uClibc-alpine-fa5a15eeb283a27ea4f03ee581856930e60a7ca0.tar.xz |
atoi, atol, atoll, and atof are supposed to be functions, not macros.
-Erik
Diffstat (limited to 'libc/stdlib/Makefile')
-rw-r--r-- | libc/stdlib/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/stdlib/Makefile b/libc/stdlib/Makefile index 6a5db9f34..cff8ada0a 100644 --- a/libc/stdlib/Makefile +++ b/libc/stdlib/Makefile @@ -27,10 +27,10 @@ DIRS = $(MALLOC) ALL_SUBDIRS = malloc malloc-930716 malloc-simple MSRC=strto_l.c -MOBJ=strtol.o strtoul.o strto_l.o +MOBJ=strtol.o strtoul.o strto_l.o atoi.o atol.o MSRC1=strto_ll.c -MOBJ1=strtoll.o strtoull.o strto_ll.o +MOBJ1=strtoll.o strtoull.o strto_ll.o atoll.o MSRC2=atexit.c MOBJ2=atexit.o exit.o |