home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / APPS / elm.lzh / ELM / SRC / ERRNO.C < prev    next >
Text File  |  1991-01-11  |  1KB  |  47 lines

  1.  
  2. static char rcsid[] = "@(#)$Id: errno.c,v 4.1 90/04/28 22:42:58 syd Exp $";
  3.  
  4. /*******************************************************************************
  5.  *  The Elm Mail System  -  $Revision: 4.1 $   $State: Exp $
  6.  *
  7.  *             Copyright (c) 1986, 1987 Dave Taylor
  8.  *             Copyright (c) 1988, 1989, 1990 USENET Community Trust
  9.  *******************************************************************************
  10.  * Bug reports, patches, comments, suggestions should be sent to:
  11.  *
  12.  *    Syd Weinstein, Elm Coordinator
  13.  *    elm@DSI.COM            dsinc!elm
  14.  *
  15.  *******************************************************************************
  16.  * $Log:    errno.c,v $
  17.  * Revision 4.1  90/04/28  22:42:58  syd
  18.  * checkin of Elm 2.3 as of Release PL0
  19.  * 
  20.  *
  21.  ******************************************************************************/
  22.  
  23. /** This routine maps error numbers to error names and error messages.
  24.     These are all directly ripped out of the include file errno.h, and
  25.     are HOPEFULLY standardized across the different breeds of Unix!!
  26.  
  27.     If (alas) yours are different, you should be able to use awk to
  28.     mangle your errno.h file quite simply...
  29.  
  30. **/
  31.  
  32. #include "headers.h"
  33.  
  34. char *strerror();
  35.  
  36. char *error_name(errnumber)
  37. int errnumber;
  38. {
  39.     return( (char *) strerror(errnumber));
  40. }
  41.  
  42. char *error_description(errnumber)
  43. int errnumber;
  44. {
  45.     return ( (char *) strerror(errnumber));
  46. }
  47.