diff options
author | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2000-04-03 08:47:51 +0000 |
---|---|---|
committer | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2000-04-03 08:47:51 +0000 |
commit | 54778cd31205b1f50397cf7bf92f7d8b37c99870 (patch) | |
tree | ca3676c72e75e70a0184e7c50084660e62e9d6a3 /libguile/mallocs.h | |
parent | abeed821987ec1476e6a7836f1ed8ba8a6185959 (diff) | |
download | guile-54778cd31205b1f50397cf7bf92f7d8b37c99870.tar.gz |
Lots of fixes to make guile (at some time) compile with strict typing.
Diffstat (limited to 'libguile/mallocs.h')
-rw-r--r-- | libguile/mallocs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/mallocs.h b/libguile/mallocs.h index 1f3240b63..0a1dbad0d 100644 --- a/libguile/mallocs.h +++ b/libguile/mallocs.h @@ -49,8 +49,8 @@ extern int scm_tc16_malloc; #define SCM_MALLOCP(X) (SCM_TYP16 (X) == scm_tc16_malloc) -#define SCM_MALLOCDATA(obj) ((char *)SCM_CDR(obj)) -#define SCM_SETMALLOCDATA(obj, val) ((char *)SCM_SETCDR(obj, val)) +#define SCM_MALLOCDATA(obj) ((char *) SCM_CELL_WORD_1 (obj)) +#define SCM_SETMALLOCDATA(obj, val) (SCM_SET_CELL_WORD_1 (obj, val)) |