Name: Anonymous 2011-11-24 12:59
Why must they feel the need to redefine all the primitives with different names?
#ifdef _MSC_VER
// Windows
typedef unsigned long long u64;
#else
// Posix
#include <stdint.h>
typedef uint64_t u64;
//typedef unsigned long long u64;
#endif