Move *-*-gnu* pattern below *-*-linux*.
[official-gcc.git] / libio / iostrerror.c
blob348e0956d70f5c461fcf88e0b3bdc1d15c37f255
1 /* This should be replaced by whatever namespace-clean
2 version of strerror you have available. */
4 #include "libioP.h"
5 extern char *strerror __P ((int));
7 char *
8 _IO_strerror (errnum)
9 int errnum;
11 return strerror(errnum);