xref: /openbsd/gnu/usr.bin/perl/h2pl/eg/sysexits.pl (revision 4a4f25f9)
1*4a4f25f9Sdownsj$EX_OK = 0x0;
2*4a4f25f9Sdownsj$EX__BASE = 0x40;
3*4a4f25f9Sdownsj$EX_USAGE = 0x40;
4*4a4f25f9Sdownsj$EX_DATAERR = 0x41;
5*4a4f25f9Sdownsj$EX_NOINPUT = 0x42;
6*4a4f25f9Sdownsj$EX_NOUSER = 0x43;
7*4a4f25f9Sdownsj$EX_NOHOST = 0x44;
8*4a4f25f9Sdownsj$EX_UNAVAILABLE = 0x45;
9*4a4f25f9Sdownsj$EX_SOFTWARE = 0x46;
10*4a4f25f9Sdownsj$EX_OSERR = 0x47;
11*4a4f25f9Sdownsj$EX_OSFILE = 0x48;
12*4a4f25f9Sdownsj$EX_CANTCREAT = 0x49;
13*4a4f25f9Sdownsj$EX_IOERR = 0x4A;
14*4a4f25f9Sdownsj$EX_TEMPFAIL = 0x4B;
15*4a4f25f9Sdownsj$EX_PROTOCOL = 0x4C;
16*4a4f25f9Sdownsj$EX_NOPERM = 0x4D;
17