Basic constructor macro for scspecseq-extern structures.
(make-scspecseq-extern )
This is the usual way to construct scspecseq-extern structures. It simply conses together a structure with the specified fields.
This macro generates a new scspecseq-extern structure from scratch. See also change-scspecseq-extern, which can "change" an existing structure, instead.
This is an ordinary
Macro:
(defmacro make-scspecseq-extern (&rest args) (std::make-aggregate 'scspecseq-extern args 'nil 'make-scspecseq-extern nil))
Function:
(defun scspecseq-extern nil (declare (xargs :guard t)) (let ((__function__ 'scspecseq-extern)) (declare (ignorable __function__)) (cons :extern (list))))