diff options
author | Mark Mitchell <mmitchel@gcc.gnu.org> | 2001-02-05 11:01:36 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2001-02-05 11:01:36 +0000 |
commit | 3df1453df5115140b5ab5bbf56cd0a4404da9a7b (patch) | |
tree | 7d2c2f4379041aeae8b380308e1294d0a49ff67a /libio/iostrerror.c | |
parent | 39d6f2e8a535c22254682e99e59d63481aab8dfe (diff) | |
download | gcc-3df1453df5115140b5ab5bbf56cd0a4404da9a7b.zip gcc-3df1453df5115140b5ab5bbf56cd0a4404da9a7b.tar.gz gcc-3df1453df5115140b5ab5bbf56cd0a4404da9a7b.tar.bz2 |
Remove libio
From-SVN: r39453
Diffstat (limited to 'libio/iostrerror.c')
-rw-r--r-- | libio/iostrerror.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/libio/iostrerror.c b/libio/iostrerror.c deleted file mode 100644 index 348e095..0000000 --- a/libio/iostrerror.c +++ /dev/null @@ -1,12 +0,0 @@ -/* This should be replaced by whatever namespace-clean - version of strerror you have available. */ - -#include "libioP.h" -extern char *strerror __P ((int)); - -char * -_IO_strerror (errnum) - int errnum; -{ - return strerror(errnum); -} |