1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-28 16:00:22 +02:00

* tags.h: Include inttypes.h when we have it.

* tags.h (SCM_UNBOUND): Make it the 34th isym/iflag, the 33th slot is
taken by the new SCM_IM_CALL_WITH_VALUES.
* print.c (scm_isymnames): Update table accordingly.
This commit is contained in:
Marius Vollmer 2001-07-22 18:30:08 +00:00
parent f4d1173bb3
commit cda36c2356

View file

@ -54,6 +54,10 @@
#include <stdint.h>
#endif
#ifdef HAVE_INTTYPES_H
#include <inttypes.h>
#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))