diff options
author | Marius Vollmer <mvo@zagadka.de> | 2003-12-26 19:04:55 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2003-12-26 19:04:55 +0000 |
commit | fc54d9376d2bd1542022776c18d27b2ad54439e2 (patch) | |
tree | 5a2efe46264933e5a07d729ab93eda4f03716991 /libguile/gen-scmconfig.c | |
parent | eb1f89f652f2606dba3ae6ccb74363c412eb952a (diff) | |
download | guile-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.c | 2 |
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" |