home *** CD-ROM | disk | FTP | other *** search
/ Serving the Web / ServingTheWeb1995.disc1of1.iso / linux / slacksrce / d / libc / libc-4.6 / libc-4 / libc-linux / libio-4.6.26 / iostrerror.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-10  |  231 b   |  16 lines

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