mirror of
https://github.com/PDP-10/its.git
synced 2026-02-04 15:53:01 +00:00
16 lines
505 B
Common Lisp
16 lines
505 B
Common Lisp
;; -*-lisp-*-
|
|
;;when compiling this should include decla2 > where the real declarations are
|
|
|
|
|
|
(defun declarations-only-when-needed macro (useless)
|
|
(cond ((or (status features ncomplr) ;;old way
|
|
(status features complr)) ;;new way
|
|
(sstatus feature complr) ;;since some now expect the new way but still might
|
|
;;run in an older compiler
|
|
(sstatus feature ncomplr) ;;until I recompile my macros and drect >
|
|
'(include |ken;decla2 >|))))
|
|
|
|
(declarations-only-when-needed)
|
|
|
|
|