can't #ifdef a typedef; check for vc6 instead

move to the right place
This commit is contained in:
Glenn Maynard
2005-07-02 23:37:55 +00:00
parent 8c542f8f27
commit 73655e87d9
@@ -71,6 +71,11 @@ typedef unsigned int uint32_t;
typedef __int64 int64_t;
typedef unsigned __int64 uint64_t;
static inline int64_t llabs( int64_t i ) { return i >= 0? i: -i; }
#if _MSC_VER < 1300 /* VC6 */
typedef unsigned int uintptr_t;
#endif
#endif
#if defined(_MSC_VER)