freebsd-dev/gnu/lib/libg++/libio/iostrerror.c

12 lines
204 B
C
Raw Normal View History

/* This should be replaced by whatever namespace-clean
version of strerror you have available. */
extern char *strerror();
char *
_IO_strerror(errnum)
int errnum;
{
return strerror(errnum);
}