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 >
Wrap
C/C++ Source or Header
|
1996-09-28
|
744b
|
35 lines
/* lerrno.h
* Not all systems support all errnos - so define those which aren't used
* to be harmless.
*
* Copyright (c) 1996 Systems Architecture Research Centre,
* City University, London, UK.
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
* Written by Tim Wilkinson <tim@sarc.city.ac.uk>, April 1996.
*/
#ifndef __lerrno_h
#define __lerrno_h
#include <errno.h>
#define NOERRNO 100000
#if !defined(EINPROGRESS)
#define EINPROGRESS NOERRNO
#endif
#if !defined(EALREADY)
#define EALREADY NOERRNO
#endif
#if !defined(EWOULDBLOCK)
#define EWOULDBLOCK NOERRNO
#endif
#if !defined(EAGAIN)
#define EAGAIN NOERRNO
#endif
#endif