home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume25 / trash / part01 / sysmess.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-03-22  |  289 b   |  16 lines

  1. /*
  2.  * Return a pointer to the error
  3.  * message indicated by errno.
  4.  * or a zero length string if
  5.  * errno is out of bounds.
  6.  */
  7. char    *
  8. sysmess()
  9. {
  10.     extern int    errno;
  11.     extern int    sys_nerr;
  12.     extern char    *sys_errlist[];
  13.  
  14.     return (errno <= 0 || errno >= sys_nerr) ? "" : sys_errlist[errno];
  15. }
  16.