remove dependency to SIZEOF___INT64

This commit is contained in:
Yukihiro Matsumoto
2012-04-20 22:39:02 +09:00
parent 1f78ba77a2
commit 0f0ad36c5f
2 changed files with 0 additions and 6 deletions
-1
View File
@@ -24,7 +24,6 @@ typedef intptr_t mrb_sym;
#define SIZEOF_LONG 4
#define SIZEOF_LONG_LONG 8
#define SIZEOF___INT64 0
#define SIZEOF_FLOAT 4
#define SIZEOF_DOUBLE 8
-5
View File
@@ -90,11 +90,6 @@
#if SIZEOF_LONG_LONG > 0
# define LONG_LONG long long
#elif SIZEOF___INT64 > 0
# define HAVE_LONG_LONG 1
# define LONG_LONG __int64
# undef SIZEOF_LONG_LONG
# define SIZEOF_LONG_LONG SIZEOF___INT64
#endif
typedef uintptr_t VALUE;