home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / kaffe-0.5p4-src.tgz / tar.out / contrib / kaffe / lib / support / nets.h < prev    next >
C/C++ Source or Header  |  1996-09-28  |  737b  |  38 lines

  1. /*
  2.  * nets.h
  3.  *
  4.  * Copyright (c) 1996 Systems Architecture Research Centre,
  5.  *           City University, London, UK.
  6.  *
  7.  * See the file "license.terms" for information on usage and redistribution
  8.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  9.  *
  10.  * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
  11.  */
  12.  
  13. #ifndef __nets_h
  14. #define __nets_h
  15.  
  16. #include "config.h"
  17. #include <errno.h>
  18.  
  19. extern int errno;
  20. extern int h_errno;
  21.  
  22. #define    MAXHOSTNAME    128
  23.  
  24. #if defined(HAVE_STRERROR)
  25. #define    SYS_ERROR    (char*)strerror(errno)
  26. #else
  27. extern char* sys_errlist[];
  28. #define    SYS_ERROR    sys_errlist[errno]
  29. #endif
  30.  
  31. #if defined(HAVE_HSTRERROR)
  32. #define    SYS_HERROR    (char*)hstrerror(h_errno)
  33. #else
  34. #define    SYS_HERROR    "Network error"
  35. #endif
  36.  
  37. #endif
  38.