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/iostrerror.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/iostrerror.c')
-rw-r--r-- | libio/iostrerror.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libio/iostrerror.c b/libio/iostrerror.c index 65aa25d..348e095 100644 --- a/libio/iostrerror.c +++ b/libio/iostrerror.c @@ -5,8 +5,8 @@ extern char *strerror __P ((int)); char * -DEFUN(_IO_strerror, (errnum), - int errnum) +_IO_strerror (errnum) + int errnum; { return strerror(errnum); } |