aboutsummaryrefslogtreecommitdiffstats
path: root/src/package.lisp
diff options
context:
space:
mode:
authorTeddy Wing2021-02-13 21:24:08 +0100
committerTeddy Wing2021-02-13 21:24:08 +0100
commitb207d273997f8162a08dbd2e8011c2bec4f4041b (patch)
tree11b9370db2a35b736028dc3f07e4203d72cc3b76 /src/package.lisp
downloadcl-sysexits-b207d273997f8162a08dbd2e8011c2bec4f4041b.tar.bz2
Define constants for exit codes based on sysexits.h
Diffstat (limited to 'src/package.lisp')
-rw-r--r--src/package.lisp20
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+))