Merge branch 'master' of git://factorcode.org/git/factor

db4
Slava Pestov 2008-12-15 21:36:22 -06:00
commit 3f7706a620
1 changed files with 2 additions and 1 deletions

View File

@ -20,13 +20,14 @@ typedef wchar_t F_CHAR;
#define STRNCMP wcsncmp
#define STRDUP _wcsdup
#define CELL_FORMAT "%lu"
#ifdef WIN64
#define CELL_FORMAT "%Iu"
#define CELL_HEX_FORMAT "%Ix"
#define CELL_HEX_PAD_FORMAT "%016Ix"
#define FIXNUM_FORMAT "%Id"
#else
#define CELL_FORMAT "%lu"
#define CELL_HEX_FORMAT "%lx"
#define CELL_HEX_PAD_FORMAT "%08lx"
#define FIXNUM_FORMAT "%ld"