harec

[hare] Hare compiler, written in C11 for POSIX OSs
Log | Files | Refs | README | LICENSE

errno.ha (3066B)


      1 export def EPERM: int = 1;
      2 export def ENOENT: int = 2;
      3 export def ESRCH: int = 3;
      4 export def EINTR: int = 4;
      5 export def EIO: int = 5;
      6 export def ENXIO: int = 6;
      7 export def E2BIG: int = 7;
      8 export def ENOEXEC: int = 8;
      9 export def EBADF: int = 9;
     10 export def ECHILD: int = 10;
     11 export def EDEADLK: int = 11;
     12 export def ENOMEM: int = 12;
     13 export def EACCES: int = 13;
     14 export def EFAULT: int = 14;
     15 export def ENOTBLK: int = 15;
     16 export def EBUSY: int = 16;
     17 export def EEXIST: int = 17;
     18 export def EXDEV: int = 18;
     19 export def ENODEV: int = 19;
     20 export def ENOTDIR: int = 20;
     21 export def EISDIR: int = 21;
     22 export def EINVAL: int = 22;
     23 export def ENFILE: int = 23;
     24 export def EMFILE: int = 24;
     25 export def ENOTTY: int = 25;
     26 export def ETXTBSY: int = 26;
     27 export def EFBIG: int = 27;
     28 export def ENOSPC: int = 28;
     29 export def ESPIPE: int = 29;
     30 export def EROFS: int = 30;
     31 export def EMLINK: int = 31;
     32 export def EPIPE: int = 32;
     33 export def EDOM: int = 33;
     34 export def ERANGE: int = 34;
     35 export def EAGAIN: int = 35;
     36 export def EWOULDBLOCK: int = EAGAIN;
     37 export def EINPROGRESS: int = 36;
     38 export def EALREADY: int = 37;
     39 export def ENOTSOCK: int = 38;
     40 export def EDESTADDRREQ: int = 39;
     41 export def EMSGSIZE: int = 40;
     42 export def EPROTOTYPE: int = 41;
     43 export def ENOPROTOOPT: int = 42;
     44 export def EPROTONOSUPPORT: int = 43;
     45 export def ESOCKTNOSUPPORT: int = 44;
     46 export def EOPNOTSUPP: int = 45;
     47 export def ENOTSUP: int = EOPNOTSUPP;
     48 export def EPFNOSUPPORT: int = 46;
     49 export def EAFNOSUPPORT: int = 47;
     50 export def EADDRINUSE: int = 48;
     51 export def EADDRNOTAVAIL: int = 49;
     52 export def ENETDOWN: int = 50;
     53 export def ENETUNREACH: int = 51;
     54 export def ENETRESET: int = 52;
     55 export def ECONNABORTED: int = 53;
     56 export def ECONNRESET: int = 54;
     57 export def ENOBUFS: int = 55;
     58 export def EISCONN: int = 56;
     59 export def ENOTCONN: int = 57;
     60 export def ESHUTDOWN: int = 58;
     61 export def ETOOMANYREFS: int = 59;
     62 export def ETIMEDOUT: int = 60;
     63 export def ECONNREFUSED: int = 61;
     64 export def ELOOP: int = 62;
     65 export def ENAMETOOLONG: int = 63;
     66 export def EHOSTDOWN: int = 64;
     67 export def EHOSTUNREACH: int = 65;
     68 export def ENOTEMPTY: int = 66;
     69 export def EPROCLIM: int = 67;
     70 export def EUSERS: int = 68;
     71 export def EDQUOT: int = 69;
     72 export def ESTALE: int = 70;
     73 export def EREMOTE: int = 71;
     74 export def EBADRPC: int = 72;
     75 export def ERPCMISMATCH: int = 73;
     76 export def EPROGUNAVAIL: int = 74;
     77 export def EPROGMISMATCH: int = 75;
     78 export def EPROCUNAVAIL: int = 76;
     79 export def ENOLCK: int = 77;
     80 export def ENOSYS: int = 78;
     81 export def EFTYPE: int = 79;
     82 export def EAUTH: int = 80;
     83 export def ENEEDAUTH: int = 81;
     84 export def EIDRM: int = 82;
     85 export def ENOMSG: int = 83;
     86 export def EOVERFLOW: int = 84;
     87 export def ECANCELED: int = 85;
     88 export def EILSEQ: int = 86;
     89 export def ENOATTR: int = 87;
     90 export def EDOOFUS: int = 88;
     91 export def EBADMSG: int = 89;
     92 export def EMULTIHOP: int = 90;
     93 export def ENOLINK: int = 91;
     94 export def EPROTO: int = 92;
     95 export def ENOTCAPABLE: int = 93;
     96 export def ECAPMODE: int = 94;
     97 export def ENOTRECOVERABLE: int = 95;
     98 export def EOWNERDEAD: int = 96;
     99 export def EINTEGRITY: int = 97;