Basic constructor macro for output-file structures.
(make-output-file [:get <get>])
This is the usual way to construct output-file structures. It simply conses together a structure with the specified fields.
This macro generates a new output-file structure from scratch. See also change-output-file, which can "change" an existing structure, instead.
This is an ordinary
Macro:
(defmacro make-output-file (&rest args) (std::make-aggregate 'output-file args '((:get)) 'make-output-file nil))
Function:
(defun output-file (get) (declare (xargs :guard (output-sectionp get))) (declare (xargs :guard t)) (let ((__function__ 'output-file)) (declare (ignorable __function__)) (b* ((get (mbe :logic (output-section-fix get) :exec get))) (cons :output-file (list (cons 'get get))))))