Skip to content

Commit

Permalink
Add implementation of EXIT for SCL.
Browse files Browse the repository at this point in the history
  • Loading branch information
lokedhs committed Sep 4, 2012
1 parent 1e47e4e commit 4c0e767
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion dev/scl.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,7 @@
(error 'unsupported-function-error :function 'os-process-id))

(defun %get-env-var (name)
(cdr (assoc name ext:*environment-list* :test #'string=))
(cdr (assoc name ext:*environment-list* :test #'string=))

(defun %exit (code)
(ext:quit :status code))

0 comments on commit 4c0e767

Please sign in to comment.