summaryrefslogtreecommitdiff
path: root/libguile/gen-scmconfig.c
diff options
context:
space:
mode:
authorMarius Vollmer <mvo@zagadka.de>2003-12-26 19:04:55 +0000
committerMarius Vollmer <mvo@zagadka.de>2003-12-26 19:04:55 +0000
commitfc54d9376d2bd1542022776c18d27b2ad54439e2 (patch)
tree5a2efe46264933e5a07d729ab93eda4f03716991 /libguile/gen-scmconfig.c
parenteb1f89f652f2606dba3ae6ccb74363c412eb952a (diff)
downloadguile-fc54d9376d2bd1542022776c18d27b2ad54439e2.tar.gz
Arrange for scm_t_intmax and scm_t_uintmax to be defined in
scmconfig.h
Diffstat (limited to 'libguile/gen-scmconfig.c')
-rw-r--r--libguile/gen-scmconfig.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libguile/gen-scmconfig.c b/libguile/gen-scmconfig.c
index 481b4ee6a..3fd2df569 100644
--- a/libguile/gen-scmconfig.c
+++ b/libguile/gen-scmconfig.c
@@ -300,6 +300,8 @@ main (int argc, char *argv[])
pf ("typedef %s scm_t_uint16;\n", SCM_I_GSC_T_UINT16);
pf ("typedef %s scm_t_int32;\n", SCM_I_GSC_T_INT32);
pf ("typedef %s scm_t_uint32;\n", SCM_I_GSC_T_UINT32);
+ pf ("typedef %s scm_t_intmax;\n", SCM_I_GSC_T_INTMAX);
+ pf ("typedef %s scm_t_uintmax;\n", SCM_I_GSC_T_UINTMAX);
pf ("\n");
pf ("/* 64-bit integer -- if available SCM_HAVE_T_INT64 will be 1 and\n"