home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 9 / FreshFishVol9-CD2.bin / bbs / gnu / libg++-2.6.2-src.lha / libg++-2.6.2 / libio / iostrerror.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-10-12  |  204 b   |  12 lines

  1. /* This should be replaced by whatever namespace-clean
  2.    version of strerror you have available. */
  3.  
  4. extern char *strerror();
  5.  
  6. char *
  7. _IO_strerror(errnum)
  8.      int errnum;
  9. {
  10.   return strerror(errnum);
  11. }
  12.