Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2001-10-01 22:05:11 +0400
committerJeff Johnston <jjohnstn@redhat.com>2001-10-01 22:05:11 +0400
commit5665b0e1d06cf7df8403ff287c8d400ebd368c65 (patch)
tree52ee68be2e527a08d1608deeeddeec5fd0bf9f76 /newlib/libc/stdlib/Makefile.in
parent47063f00e4eae2ed37096eda54429c025c0bc7b5 (diff)
2001-10-01 Charles Wilson <cwilson@ece.gatech.edu>
* libc/include/stdlib.h: add declarations for _strtoull_r, _strtoll_r, strtoull, and strtoll. * libc/stdio/local.h: remove declarations of __strtoull_r and __strtoll_r. * libc/stdio/vfscanf.c(__svfscanf_r): call _strtoull_r instead of __strtoull_r. Ditto _strtoll_r vs. __strtoll_r. * libc/stdlib/Makefile.am: add new files to .c list and .def list * libc/stdlib/Makefile.in: regenerate * libc/stdlib/strtoll_r.c: rename __strtoll_r as _strtoll_r * libc/stdlib/strtoull_r.c: rename __strtoull_r as _strtoull_r * libc/stdlib/strtoull.c: new file * libc/stdlib/strtoll.c: new file
Diffstat (limited to 'newlib/libc/stdlib/Makefile.in')
-rw-r--r--newlib/libc/stdlib/Makefile.in10
1 files changed, 7 insertions, 3 deletions
diff --git a/newlib/libc/stdlib/Makefile.in b/newlib/libc/stdlib/Makefile.in
index f7d1879ac..a955fb087 100644
--- a/newlib/libc/stdlib/Makefile.in
+++ b/newlib/libc/stdlib/Makefile.in
@@ -152,8 +152,10 @@ lib_a_SOURCES = \
strdup_r.c \
strtod.c \
strtol.c \
+ strtoll.c \
strtoll_r.c \
strtoul.c \
+ strtoull.c \
strtoull_r.c \
system.c \
valloc.c \
@@ -198,7 +200,9 @@ CHEWOUT_FILES = \
rand48.def \
strtod.def \
strtol.def \
+ strtoll.def \
strtoul.def \
+ strtoull.def \
system.def \
wcstombs.def \
wctomb.def
@@ -231,9 +235,9 @@ labs.o lcong48.o ldiv.o ldtoa.o lrand48.o malign.o malloc.o mblen.o \
mblen_r.o mbstowcs.o mbstowcs_r.o mbtowc.o mbtowc_r.o mlock.o mprec.o \
mrand48.o msize.o mstats.o mtrim.o nrand48.o putenv.o putenv_r.o \
qsort.o rand.o rand48.o rand_r.o realloc.o seed48.o setenv.o setenv_r.o \
-srand48.o strdup.o strdup_r.o strtod.o strtol.o strtoll_r.o strtoul.o \
-strtoull_r.o system.o valloc.o wcstombs.o wcstombs_r.o wctomb.o \
-wctomb_r.o
+srand48.o strdup.o strdup_r.o strtod.o strtol.o strtoll.o strtoll_r.o \
+strtoul.o strtoull.o strtoull_r.o system.o valloc.o wcstombs.o \
+wcstombs_r.o wctomb.o wctomb_r.o
CFLAGS = @CFLAGS@
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
CCLD = $(CC)