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