diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-09-16 16:01:55 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-09-16 16:01:55 +0000 |
commit | a6bb47e073377fa203132a3ae20f76103a8049b7 (patch) | |
tree | 6f133200943f818cad1e94da16393eadfe8dd250 /libio/ioperror.c | |
parent | db3b49b1fef1f3ba83eeb6537963bd7884e89602 (diff) | |
download | gcc-a6bb47e073377fa203132a3ae20f76103a8049b7.tar.gz |
Uli's libio/libstdc++ patches.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@15486 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libio/ioperror.c')
-rw-r--r-- | libio/ioperror.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libio/ioperror.c b/libio/ioperror.c index 55d822b63a6..7ca72b0bb60 100644 --- a/libio/ioperror.c +++ b/libio/ioperror.c @@ -10,8 +10,8 @@ extern char* _IO_strerror __P((int)); #endif void -DEFUN(_IO_perror, (s), - const char *s) +_IO_perror (s) + const char *s; { char *error = _IO_strerror (errno); |