diff options
author | Teddy Wing | 2021-02-13 21:24:08 +0100 |
---|---|---|
committer | Teddy Wing | 2021-02-13 21:24:08 +0100 |
commit | b207d273997f8162a08dbd2e8011c2bec4f4041b (patch) | |
tree | 11b9370db2a35b736028dc3f07e4203d72cc3b76 /src/package.lisp | |
download | cl-sysexits-b207d273997f8162a08dbd2e8011c2bec4f4041b.tar.bz2 |
Define constants for exit codes based on sysexits.h
Diffstat (limited to 'src/package.lisp')
-rw-r--r-- | src/package.lisp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/package.lisp b/src/package.lisp new file mode 100644 index 0000000..73011ec --- /dev/null +++ b/src/package.lisp @@ -0,0 +1,20 @@ +(defpackage :sysexits + (:use :cl) + + (:export + #:+ok+ + #:+usage+ + #:+dataerr+ + #:+noinput+ + #:+nouser+ + #:+nohost+ + #:+unavailable+ + #:+software+ + #:+oserr+ + #:+osfile+ + #:+cantcreat+ + #:+ioerr+ + #:+tempfail+ + #:+protocol+ + #:+noperm+ + #:+config+)) |