home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Texteditors / Origami / Sources / src / lib / strerror.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-27  |  271 b   |  18 lines

  1. /*{{{  includes*/
  2. #ifdef CONFIG_H
  3. #   include <errno.h>
  4. #endif
  5. /*}}}  */
  6.  
  7. /*{{{  variables*/
  8. extern int sys_nerr;
  9. extern char *sys_errlist[];
  10. /*}}}  */
  11.  
  12. /*{{{  strerror*/
  13. char *strerror(int errno)
  14. {
  15.   return (errno<sys_nerr ? sys_errlist[errno] : "unknown");
  16. }
  17. /*}}}  */
  18.