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

  1. /* lerrno.h
  2.  * Not all systems support all errnos - so define those which aren't used
  3.  * to be harmless.
  4.  *
  5.  * Copyright (c) 1996 Systems Architecture Research Centre,
  6.  *                 City University, London, UK.
  7.  *
  8.  * See the file "license.terms" for information on usage and redistribution
  9.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  10.  *
  11.  * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, April 1996.
  12.  */
  13.  
  14. #ifndef __lerrno_h
  15. #define __lerrno_h
  16.  
  17. #include <errno.h>
  18.  
  19. #define    NOERRNO        100000
  20.  
  21. #if !defined(EINPROGRESS)
  22. #define    EINPROGRESS    NOERRNO
  23. #endif
  24. #if !defined(EALREADY)
  25. #define    EALREADY    NOERRNO
  26. #endif
  27. #if !defined(EWOULDBLOCK)
  28. #define    EWOULDBLOCK    NOERRNO
  29. #endif
  30. #if !defined(EAGAIN)
  31. #define    EAGAIN        NOERRNO
  32. #endif
  33.  
  34. #endif
  35.