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* = 112; EADDRNOTAVAIL* = 125; EAFNOSUPPORT* = 106; EAGAIN* = 11; EALREADY* = 120; EBADF* = 9; EBADMSG* = 77; EBUSY* = 16; ECANCELED* = 140; ECHILD* = 10; ECONNABORTED* = 113; ECONNREFUSED* = 111; ECONNRESET* = 104; EDEADLK* = 45; EDESTADDRREQ* = 121; EDOM* = 33; EDQUOT* = 132; EEXIST* = 17; EFAULT* = 14; EFBIG* = 27; EHOSTUNREACH* = 118; EIDRM* = 36; EILSEQ* = 138; EINPROGRESS* = 119; EINTR* = 4; EINVAL* = 22; EIO* = 5; EISCONN* = 127; EISDIR* = 21; ELOOP* = 92; EMFILE* = 24; EMLINK* = 31; EMSGSIZE* = 122; EMULTIHOP* = 74; ENAMETOOLONG* = 91; ENETDOWN* = 115; ENETRESET* = 126; ENETUNREACH* = 114; ENFILE* = 23; ENOBUFS* = 105; ENODATA* = 61; ENODEV* = 19; ENOENT* = 2; ENOEXEC* = 8; ENOLCK* = 46; ENOLINK* = 67; ENOMEM* = 12; ENOMSG* = 35; ENOPROTOOPT* = 109; ENOSPC* = 28; ENOSR* = 63; ENOSTR* = 60; ENOSYS* = 88; ENOTCONN* = 128; ENOTDIR* = 20; ENOTEMPTY* = 90; ENOTRECOVERABLE* = 141; ENOTSOCK* = 108; ENOTSUP* = 134; ENOTTY* = 25; ENXIO* = 6; EOPNOTSUPP* = 95; EOVERFLOW* = 139; EOWNERDEAD* = 142; EPERM* = 1; EPIPE* = 32; EPROTO* = 71; EPROTONOSUPPORT* = 123; EPROTOTYPE* = 107; ERANGE* = 34; EROFS* = 30; ESPIPE* = 29; ESRCH* = 3; ESTALE* = 133; ETIME* = 62; ETIMEDOUT* = 116; ETXTBSY* = 26; EWOULDBLOCK* = 11; EXDEV* = 18; PROCEDURE [ccall] __errno* (): POINTER TO ARRAY [untagged] 1 OF int; END PosixCerrno.