diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2003-01-07 20:02:33 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2003-01-07 20:02:33 +0000 |
commit | be9c60e52e24c28e5d76eb7790e3ce76d6400e1d (patch) | |
tree | fb97be0746dbd3b11a5874dee08548ee6558d202 /newlib/libc/stdio/vfprintf.c | |
parent | d4c3a750e74112d5ea316a35a4ae61c623c5169a (diff) | |
download | cygnal-be9c60e52e24c28e5d76eb7790e3ce76d6400e1d.tar.gz cygnal-be9c60e52e24c28e5d76eb7790e3ce76d6400e1d.tar.bz2 cygnal-be9c60e52e24c28e5d76eb7790e3ce76d6400e1d.zip |
2003-01-07 Charles Wilson <cwilson@ece.gatech.edu>
* libc/stdio/sprintf.c: fix typo
* libc/stdio/vfprintf.c: fix typo
Diffstat (limited to 'newlib/libc/stdio/vfprintf.c')
-rw-r--r-- | newlib/libc/stdio/vfprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/stdio/vfprintf.c b/newlib/libc/stdio/vfprintf.c index 3fa23491b..82255735e 100644 --- a/newlib/libc/stdio/vfprintf.c +++ b/newlib/libc/stdio/vfprintf.c @@ -91,7 +91,7 @@ TRAD_SYNOPSIS DESCRIPTION <<vprintf>>, <<vfprintf>>, <<vasprintf>>, <<vsprintf>> and <<vsnprintf>> are -(respectively) variants of <<printf>>, <<fprintf>>, <<saprintf>>, <<sprintf>>, +(respectively) variants of <<printf>>, <<fprintf>>, <<asprintf>>, <<sprintf>>, and <<snprintf>>. They differ only in allowing their caller to pass the variable argument list as a <<va_list>> object (initialized by <<va_start>>) rather than directly accepting a variable number of arguments. |