DEADSOFTWARE

add osx-ppc support via cpfront
[cpc.git] / src / cpfront / osx / powerpc / 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* = 48;
42 EADDRNOTAVAIL* = 49;
43 EAFNOSUPPORT* = 47;
44 EAGAIN* = 35;
45 EALREADY* = 37;
46 EBADF* = 9;
47 EBADMSG* = 94;
48 EBUSY* = 16;
49 ECANCELED* = 89;
50 ECHILD* = 10;
51 ECONNABORTED* = 53;
52 ECONNREFUSED* = 61;
53 ECONNRESET* = 54;
54 EDEADLK* = 11;
55 EDESTADDRREQ* = 39;
56 EDOM* = 33;
57 EDQUOT* = 69;
58 EEXIST* = 17;
59 EFAULT* = 14;
60 EFBIG* = 27;
61 EHOSTUNREACH* = 65;
62 EIDRM* = 90;
63 EILSEQ* = 92;
64 EINPROGRESS* = 36;
65 EINTR* = 4;
66 EINVAL* = 22;
67 EIO* = 5;
68 EISCONN* = 56;
69 EISDIR* = 21;
70 ELOOP* = 62;
71 EMFILE* = 24;
72 EMLINK* = 31;
73 EMSGSIZE* = 40;
74 EMULTIHOP* = 95;
75 ENAMETOOLONG* = 63;
76 ENETDOWN* = 50;
77 ENETRESET* = 52;
78 ENETUNREACH* = 51;
79 ENFILE* = 23;
80 ENOBUFS* = 55;
81 ENODATA* = 96;
82 ENODEV* = 19;
83 ENOENT* = 2;
84 ENOEXEC* = 8;
85 ENOLCK* = 77;
86 ENOLINK* = 97;
87 ENOMEM* = 12;
88 ENOMSG* = 91;
89 ENOPROTOOPT* = 42;
90 ENOSPC* = 28;
91 ENOSR* = 98;
92 ENOSTR* = 99;
93 ENOSYS* = 78;
94 ENOTCONN* = 57;
95 ENOTDIR* = 20;
96 ENOTEMPTY* = 66;
97 ENOTSOCK* = 38;
98 ENOTSUP* = 45;
99 ENOTTY* = 25;
100 ENXIO* = 6;
101 EOPNOTSUPP* = 102;
102 EOVERFLOW* = 84;
103 EPERM* = 1;
104 EPIPE* = 32;
105 EPROTO* = 100;
106 EPROTONOSUPPORT* = 43;
107 EPROTOTYPE* = 41;
108 ERANGE* = 34;
109 EROFS* = 30;
110 ESPIPE* = 29;
111 ESRCH* = 3;
112 ESTALE* = 70;
113 ETIME* = 101;
114 ETIMEDOUT* = 60;
115 ETXTBSY* = 26;
116 EWOULDBLOCK* = 35;
117 EXDEV* = 18;
119 VAR
120 errno*: int;
123 END PosixCerrno.