diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2003-01-07 01:45:32 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2003-01-07 01:45:32 +0000 |
commit | b2294aaa30ad58363983f7a6e5a37a3bcf5025bf (patch) | |
tree | c4586ca4de46bb7dda1d2a258da679a60145a06c | |
parent | ea5e5daf7ca7895dfa82d2280a7862faefb598ec (diff) | |
download | newlib-b2294aaa30ad58363983f7a6e5a37a3bcf5025bf.zip newlib-b2294aaa30ad58363983f7a6e5a37a3bcf5025bf.tar.gz newlib-b2294aaa30ad58363983f7a6e5a37a3bcf5025bf.tar.bz2 |
2003-01-06 Charles Wilson <cwilson@ece.gatech.edu>
* Makefile.am: Add vasprintf.
* Makefile.in: Regenerated.
-rw-r--r-- | newlib/ChangeLog | 5 | ||||
-rw-r--r-- | newlib/libc/stdio/Makefile.am | 3 | ||||
-rw-r--r-- | newlib/libc/stdio/Makefile.in | 3 |
3 files changed, 9 insertions, 2 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index ac57c9f..ea5f769 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,5 +1,10 @@ 2003-01-06 Charles Wilson <cwilson@ece.gatech.edu> + * Makefile.am: Add vasprintf. + * Makefile.in: Regenerated. + +2003-01-06 Charles Wilson <cwilson@ece.gatech.edu> + * asprintf.c (_asprintf_r): insure both declarations are the same. diff --git a/newlib/libc/stdio/Makefile.am b/newlib/libc/stdio/Makefile.am index ac38832..37911ef 100644 --- a/newlib/libc/stdio/Makefile.am +++ b/newlib/libc/stdio/Makefile.am @@ -85,7 +85,8 @@ LIB_OBJS = \ ftello.$(oext) \ getw.$(oext) \ mktemp.$(oext) \ - putw.$(oext) + putw.$(oext) \ + vasprintf.$(oext) endif LIBADD_OBJS = vfiprintf.$(oext) vfprintf.$(oext) diff --git a/newlib/libc/stdio/Makefile.in b/newlib/libc/stdio/Makefile.in index cd49823..4fa1449 100644 --- a/newlib/libc/stdio/Makefile.in +++ b/newlib/libc/stdio/Makefile.in @@ -188,7 +188,8 @@ GENERAL_SOURCES = \ @ELIX_LEVEL_1_FALSE@ ftello.$(oext) \ @ELIX_LEVEL_1_FALSE@ getw.$(oext) \ @ELIX_LEVEL_1_FALSE@ mktemp.$(oext) \ -@ELIX_LEVEL_1_FALSE@ putw.$(oext) +@ELIX_LEVEL_1_FALSE@ putw.$(oext) \ +@ELIX_LEVEL_1_FALSE@ vasprintf.$(oext) LIBADD_OBJS = vfiprintf.$(oext) vfprintf.$(oext) |