diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2001-09-13 21:12:33 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2001-09-13 21:12:33 +0000 |
commit | 7a2afbbb855e8b96234fd78b22698d028e785ea6 (patch) | |
tree | 617fa44b92d9b4b2bdaed083daf357195ffcb73e /newlib/libc/stdlib/Makefile.am | |
parent | b011df87d14a660c498e57ac0d889def8480c603 (diff) | |
download | cygnal-7a2afbbb855e8b96234fd78b22698d028e785ea6.tar.gz cygnal-7a2afbbb855e8b96234fd78b22698d028e785ea6.tar.bz2 cygnal-7a2afbbb855e8b96234fd78b22698d028e785ea6.zip |
2001-09-13 Jeff Johnston <jjohnstn@redhat.com>
* libc/stdlib/Makefile.am: Add support to build strtoll_r.c
and strtoull_r.c.
* libc/stdlib/Makefile.in: Regenerated.
* libc/stdlib/strtoll_r.c: New file.
* libc/stdlib/strtoull_r.c: New file.
* libc/stdio/local.h: Add prototypes for long long string
conversion routines.
* libc/stdio/vfscanf.c (__svfscanf_r): Add optional long long support
tied to %L integer conversion specifier.
Diffstat (limited to 'newlib/libc/stdlib/Makefile.am')
-rw-r--r-- | newlib/libc/stdlib/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/newlib/libc/stdlib/Makefile.am b/newlib/libc/stdlib/Makefile.am index 2c44d2cc9..1d41fe15f 100644 --- a/newlib/libc/stdlib/Makefile.am +++ b/newlib/libc/stdlib/Makefile.am @@ -70,7 +70,9 @@ lib_a_SOURCES = \ strdup_r.c \ strtod.c \ strtol.c \ + strtoll_r.c \ strtoul.c \ + strtoull_r.c \ system.c \ valloc.c \ wcstombs.c \ |