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/frames.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/frames.h')
-rw-r--r-- | src/frames.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frames.h b/src/frames.h index 823930bc0..4647b403d 100644 --- a/src/frames.h +++ b/src/frames.h @@ -88,7 +88,7 @@ * Heap frames */ -extern scm_bits_t scm_tc16_heap_frame; +extern scm_t_bits scm_tc16_heap_frame; #define SCM_HEAP_FRAME_P(x) SCM_SMOB_PREDICATE (scm_tc16_heap_frame, x) #define SCM_HEAP_FRAME_DATA(f) ((SCM *) SCM_SMOB_DATA (f)) |