Skip to content
Snippets Groups Projects
Commit 5ed197db authored by wlott's avatar wlott
Browse files

Annotate c types as just-dump-it-normally.

parent 23138708
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/c-call.lisp,v 1.6 1991/02/28 20:50:12 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/c-call.lisp,v 1.7 1991/12/16 19:45:34 wlott Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -38,7 +38,8 @@ ...@@ -38,7 +38,8 @@
;;; The C-Type structure is used to represent aspects of C data representations ;;; The C-Type structure is used to represent aspects of C data representations
;;; that aren't directly implemented by Aliens. ;;; that aren't directly implemented by Aliens.
;;; ;;;
(defstruct c-type (defstruct (c-type
(:make-load-form-fun :just-dump-it-normally))
;; ;;
;; A form which is a printable representation of this type. ;; A form which is a printable representation of this type.
description description
...@@ -78,7 +79,8 @@ ...@@ -78,7 +79,8 @@
;;; be allocated to the field than are actually necessary to hold a value of ;;; be allocated to the field than are actually necessary to hold a value of
;;; that type. ;;; that type.
;;; ;;;
(defstruct field-info (defstruct (field-info
(:make-load-form-fun :just-dump-it-normally))
;; ;;
;; The symbol name of this field. ;; The symbol name of this field.
(name nil :type symbol) (name nil :type symbol)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment