summaryrefslogtreecommitdiff
path: root/control-flow.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'control-flow.lisp')
-rw-r--r--control-flow.lisp21
1 files changed, 21 insertions, 0 deletions
diff --git a/control-flow.lisp b/control-flow.lisp
index a75fe6a..bcd8e23 100644
--- a/control-flow.lisp
+++ b/control-flow.lisp
@@ -236,3 +236,24 @@
(defun values-list (list)
(apply #'values list))
+
+
+;; FIXME
+(defmacro assert (form &optional places datum &rest args)
+ )
+
+;; FIXME
+(defmacro check-type (thing type &rest strings)
+ )
+
+;; FIXME
+(defmacro defsetf (&rest args)
+ )
+
+;; FIXME
+(defun get-setf-expansion (&rest args)
+ (values nil nil nil `(error "SETF not implemented") `(error "SETF not implemented")))
+
+;; FIXME
+(defmacro define-setf-expander (&rest args)
+ )