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/stdio/putchar.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/stdio/putchar.c')
-rw-r--r-- | libio/stdio/putchar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libio/stdio/putchar.c b/libio/stdio/putchar.c index f97af04..1e1dd13 100644 --- a/libio/stdio/putchar.c +++ b/libio/stdio/putchar.c @@ -27,7 +27,7 @@ putchar (c) { int result; _IO_cleanup_region_start ((void (*) __P ((void *))) _IO_funlockfile, - _IO_stdout); + _IO_stdout); _IO_flockfile (_IO_stdout); result = _IO_putc_unlocked (c, _IO_stdout); _IO_cleanup_region_end (1); |