From a217c6e52324a3b21538b27f392abbfe76de0c83 Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Sun, 22 Jul 2001 18:36:18 +0000 Subject: [PATCH] * tags.h: Include inttypes.h when we have it. * tags.h (SCM_UNBOUND): Make it the 34th isym/iflag, the 33th slot os taken by the new SCM_IM_CALL_WITH_VALUES. * print.c (scm_isymnames): Update table accordingly. --- libguile/tags.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libguile/tags.h b/libguile/tags.h index 7d45c66c5..9b877b7ec 100644 --- a/libguile/tags.h +++ b/libguile/tags.h @@ -54,6 +54,10 @@ #include #endif +#ifdef HAVE_INTTYPES_H +#include +#endif + /* In the beginning was the Word: @@ -487,7 +491,7 @@ extern char *scm_isymnames[]; /* defined in print.c */ * used instead. It is not ideal to let this kind of unique and * strange values loose on the Scheme level. */ -#define SCM_UNBOUND SCM_MAKIFLAG (33) +#define SCM_UNBOUND SCM_MAKIFLAG (34) #define SCM_UNBNDP(x) (SCM_EQ_P ((x), SCM_UNDEFINED))