DEADSOFTWARE

add utility cpmake
[cpc.git] / src / cpfront / linux / 486 / Posix / Mod / Cerrno.cp
1 MODULE PosixCerrno ['errno.h'];
3 (* generated by genposix.sh, do not modify *)
5 IMPORT SYSTEM, PosixCtypes;
7 TYPE
8 char* = PosixCtypes.char;
9 signed_char* = PosixCtypes.signed_char;
10 unsigned_char* = PosixCtypes.unsigned_char;
11 short* = PosixCtypes.short;
12 short_int* = PosixCtypes.short_int;
13 signed_short* = PosixCtypes.signed_short;
14 signed_short_int* = PosixCtypes.signed_short_int;
15 unsigned_short* = PosixCtypes.unsigned_short;
16 unsigned_short_int* = PosixCtypes.unsigned_short_int;
17 int* = PosixCtypes.int;
18 signed* = PosixCtypes.signed;
19 signed_int* = PosixCtypes.signed_int;
20 unsigned* = PosixCtypes.unsigned;
21 unsigned_int* = PosixCtypes.unsigned_int;
22 long* = PosixCtypes.long;
23 long_int* = PosixCtypes.long_int;
24 signed_long* = PosixCtypes.signed_long;
25 signed_long_int* = PosixCtypes.signed_long_int;
26 unsigned_long* = PosixCtypes.unsigned_long;
27 unsigned_long_int* = PosixCtypes.unsigned_long_int;
28 long_long* = PosixCtypes.long_long;
29 long_long_int* = PosixCtypes.long_long_int;
30 signed_long_long* = PosixCtypes.signed_long_long;
31 signed_long_long_int* = PosixCtypes.signed_long_long_int;
32 unsigned_long_long* = PosixCtypes.unsigned_long_long;
33 unsigned_long_long_int* = PosixCtypes.unsigned_long_long_int;
34 float* = PosixCtypes.float;
35 double* = PosixCtypes.double;
36 long_double* = PosixCtypes.long_double;
38 CONST
39 E2BIG* = 7;
40 EACCES* = 13;
41 EADDRINUSE* = 98;
42 EADDRNOTAVAIL* = 99;
43 EAFNOSUPPORT* = 97;
44 EAGAIN* = 11;
45 EALREADY* = 114;
46 EBADF* = 9;
47 EBADMSG* = 74;
48 EBUSY* = 16;
49 ECANCELED* = 125;
50 ECHILD* = 10;
51 ECONNABORTED* = 103;
52 ECONNREFUSED* = 111;
53 ECONNRESET* = 104;
54 EDEADLK* = 35;
55 EDESTADDRREQ* = 89;
56 EDOM* = 33;
57 EDQUOT* = 122;
58 EEXIST* = 17;
59 EFAULT* = 14;
60 EFBIG* = 27;
61 EHOSTUNREACH* = 113;
62 EIDRM* = 43;
63 EILSEQ* = 84;
64 EINPROGRESS* = 115;
65 EINTR* = 4;
66 EINVAL* = 22;
67 EIO* = 5;
68 EISCONN* = 106;
69 EISDIR* = 21;
70 ELOOP* = 40;
71 EMFILE* = 24;
72 EMLINK* = 31;
73 EMSGSIZE* = 90;
74 EMULTIHOP* = 72;
75 ENAMETOOLONG* = 36;
76 ENETDOWN* = 100;
77 ENETRESET* = 102;
78 ENETUNREACH* = 101;
79 ENFILE* = 23;
80 ENOBUFS* = 105;
81 ENODATA* = 61;
82 ENODEV* = 19;
83 ENOENT* = 2;
84 ENOEXEC* = 8;
85 ENOLCK* = 37;
86 ENOLINK* = 67;
87 ENOMEM* = 12;
88 ENOMSG* = 42;
89 ENOPROTOOPT* = 92;
90 ENOSPC* = 28;
91 ENOSR* = 63;
92 ENOSTR* = 60;
93 ENOSYS* = 38;
94 ENOTCONN* = 107;
95 ENOTDIR* = 20;
96 ENOTEMPTY* = 39;
97 ENOTSOCK* = 88;
98 ENOTSUP* = 95;
99 ENOTTY* = 25;
100 ENXIO* = 6;
101 EOPNOTSUPP* = 95;
102 EOVERFLOW* = 75;
103 EPERM* = 1;
104 EPIPE* = 32;
105 EPROTO* = 71;
106 EPROTONOSUPPORT* = 93;
107 EPROTOTYPE* = 91;
108 ERANGE* = 34;
109 EROFS* = 30;
110 ESPIPE* = 29;
111 ESRCH* = 3;
112 ESTALE* = 116;
113 ETIME* = 62;
114 ETIMEDOUT* = 110;
115 ETXTBSY* = 26;
116 EWOULDBLOCK* = 11;
117 EXDEV* = 18;
119 CONST
120 ENOTRECOVERABLE* = 131;
121 EOWNERDEAD* = 130;
123 PROCEDURE [ccall] __errno_location* (): POINTER TO ARRAY [untagged] 1 OF int;
125 END PosixCerrno.