define some C99 stuff (not trying to do it all; it's pages long)

This commit is contained in:
Glenn Maynard
2007-03-22 00:34:41 +00:00
parent d6986e900e
commit 70b8f34371
@@ -100,6 +100,8 @@ typedef int int32_t;
typedef unsigned int uint32_t;
typedef __int64 int64_t;
typedef unsigned __int64 uint64_t;
#define INT64_C(i) i##i64
#define UINT64_C(i) i##i64
static inline int64_t llabs( int64_t i ) { return i >= 0? i: -i; }
#endif