summaryrefslogtreecommitdiff
path: root/src/objcodes.h
diff options
context:
space:
mode:
authorLudovic Court`es <ludovic.courtes@laas.fr>2005-04-22 11:07:06 +0000
committerLudovic Courtès <ludo@gnu.org>2008-04-25 19:09:29 +0200
commitf9e8c09d42ce992803d2c4dddbc00991260c636f (patch)
tree8295235387c7a31cfd78736dfaccab0ba9d15269 /src/objcodes.h
parent7a0d0cee1f3f830f7b356457c39e3768f7d24d57 (diff)
downloadguile-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.h2
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))