freebsd-dev/gnu/lib/libg++/libio/iostrerror.c
Poul-Henning Kamp 61d5ffaf10 I belive this should be makeable under 2.0. There may be outstanding
issues in these areas:
    .h's installed
    .hP's installed
    -lcurses interaction
    files needed in ~/legal for copyleft reasons.
1994-08-08 05:52:55 +00:00

12 lines
204 B
C

/* 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);
}