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