diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2007-02-20 20:53:35 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2007-02-20 20:53:35 +0000 |
commit | 960e5d8f19bee29b8440b037122f632e3b64faad (patch) | |
tree | 3aefddc2c9dfee1bd4f0178f51e83766c0b21979 /newlib | |
parent | 7db9fabc836e4bc56f47a31c9764c193f89bddfc (diff) | |
download | newlib-960e5d8f19bee29b8440b037122f632e3b64faad.zip newlib-960e5d8f19bee29b8440b037122f632e3b64faad.tar.gz newlib-960e5d8f19bee29b8440b037122f632e3b64faad.tar.bz2 |
2007-02-20 Kazunori Asayama <asayama@sm.sony.co.jp>
* libc/include/stdio.h: Add declaration for vsiprintf.
Diffstat (limited to 'newlib')
-rw-r--r-- | newlib/ChangeLog | 4 | ||||
-rw-r--r-- | newlib/libc/include/stdio.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 02cd158..5b63f37 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,7 @@ +2007-02-20 Kazunori Asayama <asayama@sm.sony.co.jp> + + * libc/include/stdio.h: Add declaration for vsiprintf. + 2007-02-14 Patrick Mansfield <patmans@us.ibm.com> Add a floating point environment for SPU (cell): diff --git a/newlib/libc/include/stdio.h b/newlib/libc/include/stdio.h index 4d3e0c5..6171233 100644 --- a/newlib/libc/include/stdio.h +++ b/newlib/libc/include/stdio.h @@ -251,6 +251,7 @@ int _EXFUN(vfiprintf, (FILE *, const char *, __VALIST)); int _EXFUN(vfiscanf, (FILE *, const char *, __VALIST)); int _EXFUN(vfscanf, (FILE *, const char *, __VALIST)); int _EXFUN(viprintf, (const char *, __VALIST)); +int _EXFUN(vsiprintf, (char *, const char *, __VALIST)); int _EXFUN(viscanf, (const char *, __VALIST)); int _EXFUN(vscanf, (const char *, __VALIST)); int _EXFUN(vsiscanf, (const char *, const char *, __VALIST)); |