diff options
author | Ulrich Drepper <drepper@cygnus.com> | 1997-09-16 10:01:55 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1997-09-16 10:01:55 -0600 |
commit | e693cc28bbfeb1c1728bec4392505d2eba2b1090 (patch) | |
tree | 6f133200943f818cad1e94da16393eadfe8dd250 /libio/outfloat.c | |
parent | 610ce97e654a9f2ed5e103bddd936988c5768538 (diff) | |
download | gcc-e693cc28bbfeb1c1728bec4392505d2eba2b1090.zip gcc-e693cc28bbfeb1c1728bec4392505d2eba2b1090.tar.gz gcc-e693cc28bbfeb1c1728bec4392505d2eba2b1090.tar.bz2 |
Uli's libio/libstdc++ patches.
From-SVN: r15486
Diffstat (limited to 'libio/outfloat.c')
-rw-r--r-- | libio/outfloat.c | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/libio/outfloat.c b/libio/outfloat.c index a74b1a2..5cbb6c9 100644 --- a/libio/outfloat.c +++ b/libio/outfloat.c @@ -24,6 +24,7 @@ the executable file might be covered by the GNU General Public License. */ #include "libioP.h" +#ifdef _IO_USE_DTOA /* Format floating-point number and print them. Return number of chars printed, or EOF on error. @@ -33,10 +34,15 @@ the executable file might be covered by the GNU General Public License. */ */ int -DEFUN(_IO_outfloat, (value, sb, type, width, precision, flags, - sign_mode, fill), - double value AND _IO_FILE *sb AND int type AND int width - AND int precision AND int flags AND int sign_mode AND int fill) +_IO_outfloat (value, sb, type, width, precision, flags, sign_mode, fill) + double value; + _IO_FILE *sb; + int type; + int width; + int precision; + int flags; + int sign_mode; + int fill; { int count = 0; #define PUT(x) do {if (_IO_putc(x, sb) < 0) goto error; count++;} while (0) @@ -202,3 +208,4 @@ DEFUN(_IO_outfloat, (value, sb, type, width, precision, flags, error: return EOF; } +#endif |