]> git.ipfire.org Git - thirdparty/gcc.git/blob - libio/iostrerror.c
Initial revision
[thirdparty/gcc.git] / libio / iostrerror.c
1 /* This should be replaced by whatever namespace-clean
2 version of strerror you have available. */
3
4 #include "libioP.h"
5 extern char *strerror __P ((int));
6
7 char *
8 DEFUN(_IO_strerror, (errnum),
9 int errnum)
10 {
11 return strerror(errnum);
12 }