fix printf configuration

This commit is contained in:
Matthew Flatt 2010-12-04 06:36:12 -07:00
parent d4158cfc9c
commit c9e1bb2c46
2 changed files with 4 additions and 4 deletions

View File

@ -33,10 +33,6 @@
# include <stdarg.h>
#endif
#ifndef PRINTF_INTPTR_SIZE_PREFIX
# define PRINTF_INTPTR_SIZE_PREFIX "l"
#endif
#define mzVA_ARG(x, y) HIDE_FROM_XFORM(va_arg(x, y))
#define TMP_CMARK_VALUE scheme_parameterization_key

View File

@ -2023,6 +2023,10 @@ Scheme_Object *scheme_load_delayed_code(int pos, struct Scheme_Load_Delay *ld);
intptr_t scheme_get_print_width(void);
#ifndef PRINTF_INTPTR_SIZE_PREFIX
# define PRINTF_INTPTR_SIZE_PREFIX "l"
#endif
/*========================================================================*/
/* compile and link */
/*========================================================================*/