diff options
author | Ludovic Court`es <ludovic.courtes@laas.fr> | 2005-04-22 11:07:06 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2008-04-25 19:09:29 +0200 |
commit | f9e8c09d42ce992803d2c4dddbc00991260c636f (patch) | |
tree | 8295235387c7a31cfd78736dfaccab0ba9d15269 /src/objcodes.h | |
parent | 7a0d0cee1f3f830f7b356457c39e3768f7d24d57 (diff) | |
download | guile-f9e8c09d42ce992803d2c4dddbc00991260c636f.tar.gz |
Updated the C code base so that it compiles with Guile 1.7.2.
* src/*.[ch]: Introduced changes so that it compiles with Guile 1.7.2.
git-archimport-id: lcourtes@laas.fr--2004-libre/guile-vm--revival--0.6--patch-1
Diffstat (limited to 'src/objcodes.h')
-rw-r--r-- | src/objcodes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/objcodes.h b/src/objcodes.h index 20afd042a..ab165f664 100644 --- a/src/objcodes.h +++ b/src/objcodes.h @@ -51,7 +51,7 @@ struct scm_objcode { int fd; /* file descriptor when mmap'ed */ }; -extern scm_bits_t scm_tc16_objcode; +extern scm_t_bits scm_tc16_objcode; #define SCM_OBJCODE_P(x) (SCM_SMOB_PREDICATE (scm_tc16_objcode, x)) #define SCM_OBJCODE_DATA(x) ((struct scm_objcode *) SCM_SMOB_DATA (x)) |