diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2003-11-27 19:47:19 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2003-11-27 19:47:19 +0000 |
commit | 6bbb700c348150b7f16b185ec63eb0c1fcc92584 (patch) | |
tree | 13268ce667a37322fd6e8d7aef7f713905e47209 /newlib/libc/stdlib/Makefile.am | |
parent | 6dec26cd0ce7a817fc660ed59182032a44bbac5f (diff) | |
download | cygnal-6bbb700c348150b7f16b185ec63eb0c1fcc92584.tar.gz cygnal-6bbb700c348150b7f16b185ec63eb0c1fcc92584.tar.bz2 cygnal-6bbb700c348150b7f16b185ec63eb0c1fcc92584.zip |
2003-11-27 Artem B. Bityuckiy <mail_lists@mail.ru>
Jeff Johnston <jjohnstn@redhat.com>
* libc/include/stdlib.h (lldiv_t): New type.
(atoll, llabs, lldiv): New prototypes.
* libc/stdlib/Makefile.am: Add support for atoll, llabs, and lldiv.
* libc/stdlib/stdlib.tex: Ditto.
* libc/stdlib/Makefile.in: Regenerated.
* libc/stdlib/atoll.c: New file.
* libc/stdlib/llabs.c: Ditto.
* libc/stdlib/lldiv.c: Ditto.
Diffstat (limited to 'newlib/libc/stdlib/Makefile.am')
-rw-r--r-- | newlib/libc/stdlib/Makefile.am | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/newlib/libc/stdlib/Makefile.am b/newlib/libc/stdlib/Makefile.am index cdd7987a0..f6ac17cc9 100644 --- a/newlib/libc/stdlib/Makefile.am +++ b/newlib/libc/stdlib/Makefile.am @@ -69,7 +69,10 @@ EXTENDED_SOURCES = \ strtoll.c \ strtoll_r.c \ strtoull.c \ - strtoull_r.c + strtoull_r.c \ + atoll.c \ + llabs.c \ + lldiv.c ELIX_2_OBJS = \ a64l.$(oext) \ @@ -185,16 +188,19 @@ CHEWOUT_FILES= \ assert.def \ atexit.def \ atof.def \ - ecvtbuf.def \ atoi.def \ + atoll.def \ calloc.def \ div.def \ + ecvtbuf.def \ efgcvt.def \ envlock.def \ exit.def \ getenv.def \ labs.def \ ldiv.def \ + llabs.def \ + lldiv.def \ malloc.def \ mallocr.def \ mblen.def \ |