aboutsummaryrefslogtreecommitdiffstats
path: root/src/sysexits.lisp
blob: 255d6b33f328056be0a8b6e8c141dd8106b82303 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
(in-package :sysexits)

(defconstant +ok+ 0)

(defconstant +usage+ 64)

(defconstant +dataerr+ 65)

(defconstant +noinput+ 66)

(defconstant +nouser+ 67)

(defconstant +nohost+ 68)

(defconstant +unavailable+ 69)

(defconstant +software+ 70)

(defconstant +oserr+ 71)

(defconstant +osfile+ 72)

(defconstant +cantcreat+ 73)

(defconstant +ioerr+ 74)

(defconstant +tempfail+ 75)

(defconstant +protocol+ 76)

(defconstant +noperm+ 77)

(defconstant +config+ 78)