MODULE PosixCerrno ['errno.h']; (* generated by genposix.sh, do not modify *) IMPORT SYSTEM, PosixCtypes; TYPE char* = PosixCtypes.char; signed_char* = PosixCtypes.signed_char; unsigned_char* = PosixCtypes.unsigned_char; short* = PosixCtypes.short; short_int* = PosixCtypes.short_int; signed_short* = PosixCtypes.signed_short; signed_short_int* = PosixCtypes.signed_short_int; unsigned_short* = PosixCtypes.unsigned_short; unsigned_short_int* = PosixCtypes.unsigned_short_int; int* = PosixCtypes.int; signed* = PosixCtypes.signed; signed_int* = PosixCtypes.signed_int; unsigned* = PosixCtypes.unsigned; unsigned_int* = PosixCtypes.unsigned_int; long* = PosixCtypes.long; long_int* = PosixCtypes.long_int; signed_long* = PosixCtypes.signed_long; signed_long_int* = PosixCtypes.signed_long_int; unsigned_long* = PosixCtypes.unsigned_long; unsigned_long_int* = PosixCtypes.unsigned_long_int; long_long* = PosixCtypes.long_long; long_long_int* = PosixCtypes.long_long_int; signed_long_long* = PosixCtypes.signed_long_long; signed_long_long_int* = PosixCtypes.signed_long_long_int; unsigned_long_long* = PosixCtypes.unsigned_long_long; unsigned_long_long_int* = PosixCtypes.unsigned_long_long_int; float* = PosixCtypes.float; double* = PosixCtypes.double; long_double* = PosixCtypes.long_double; CONST E2BIG* = 7; EACCES* = 13; EADDRINUSE* = 98; EADDRNOTAVAIL* = 99; EAFNOSUPPORT* = 97; EAGAIN* = 11; EALREADY* = 114; EBADF* = 9; EBADMSG* = 74; EBUSY* = 16; ECANCELED* = 125; ECHILD* = 10; ECONNABORTED* = 103; ECONNREFUSED* = 111; ECONNRESET* = 104; EDEADLK* = 35; EDESTADDRREQ* = 89; EDOM* = 33; EDQUOT* = 122; EEXIST* = 17; EFAULT* = 14; EFBIG* = 27; EHOSTUNREACH* = 113; EIDRM* = 43; EILSEQ* = 84; EINPROGRESS* = 115; EINTR* = 4; EINVAL* = 22; EIO* = 5; EISCONN* = 106; EISDIR* = 21; ELOOP* = 40; EMFILE* = 24; EMLINK* = 31; EMSGSIZE* = 90; EMULTIHOP* = 72; ENAMETOOLONG* = 36; ENETDOWN* = 100; ENETRESET* = 102; ENETUNREACH* = 101; ENFILE* = 23; ENOBUFS* = 105; ENODATA* = 61; ENODEV* = 19; ENOENT* = 2; ENOEXEC* = 8; ENOLCK* = 37; ENOLINK* = 67; ENOMEM* = 12; ENOMSG* = 42; ENOPROTOOPT* = 92; ENOSPC* = 28; ENOSR* = 63; ENOSTR* = 60; ENOSYS* = 38; ENOTCONN* = 107; ENOTDIR* = 20; ENOTEMPTY* = 39; ENOTRECOVERABLE* = 131; ENOTSOCK* = 88; ENOTSUP* = 95; ENOTTY* = 25; ENXIO* = 6; EOPNOTSUPP* = 95; EOVERFLOW* = 75; EOWNERDEAD* = 130; EPERM* = 1; EPIPE* = 32; EPROTO* = 71; EPROTONOSUPPORT* = 93; EPROTOTYPE* = 91; ERANGE* = 34; EROFS* = 30; ESPIPE* = 29; ESRCH* = 3; ESTALE* = 116; ETIME* = 62; ETIMEDOUT* = 110; ETXTBSY* = 26; EWOULDBLOCK* = 11; EXDEV* = 18; PROCEDURE [ccall] __errno_location* (): POINTER TO ARRAY [untagged] 1 OF int; END PosixCerrno.