2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2025-03-21 08:20:29 +08:00
gcc/libio/iostrerror.c
Jason Merrill 6599da043e Initial revision
From-SVN: r14877
1997-08-21 18:57:35 -04:00

13 lines
244 B
C

/* This should be replaced by whatever namespace-clean
version of strerror you have available. */
#include "libioP.h"
extern char *strerror __P ((int));
char *
DEFUN(_IO_strerror, (errnum),
int errnum)
{
return strerror(errnum);
}