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