diff options
Diffstat (limited to 'Client/ThirdParty/libfixmath/fixtest/hiclock.h')
-rw-r--r-- | Client/ThirdParty/libfixmath/fixtest/hiclock.h | 66 |
1 files changed, 33 insertions, 33 deletions
diff --git a/Client/ThirdParty/libfixmath/fixtest/hiclock.h b/Client/ThirdParty/libfixmath/fixtest/hiclock.h index 7cabf47..89e32c8 100644 --- a/Client/ThirdParty/libfixmath/fixtest/hiclock.h +++ b/Client/ThirdParty/libfixmath/fixtest/hiclock.h @@ -1,33 +1,33 @@ -#ifndef __hiclock_h__ -#define __hiclock_h__ - -#include <stdint.h> -#include <inttypes.h> - -#if defined(__unix__) -#include <sys/time.h> -#define PRIuHICLOCK PRIu64 -#define PRIiHICLOCK PRIi64 -typedef uint64_t hiclock_t; -#define HICLOCKS_PER_SEC 1000000 -#define hiclock_init() -#elif defined(__WIN32) || defined(__WIN64) -#include <windows.h> -#define PRIuHICLOCK PRIu64 -#define PRIiHICLOCK PRIi64 -typedef LONGLONG hiclock_t; -extern LONGLONG HICLOCKS_PER_SEC; -extern void hiclock_init(); -#else -#include <time.h> -#define PRIuHICLOCK PRIu32 -#define PRIiHICLOCK PRIi32 -typedef clock_t hiclock_t; -#define HICLOCKS_PER_SEC CLOCKS_PER_SEC -#define hiclock_init() -#endif - -extern hiclock_t hiclock(); - -#endif - +#ifndef __hiclock_h__
+#define __hiclock_h__
+
+#include <stdint.h>
+#include <inttypes.h>
+
+#if defined(__unix__)
+#include <sys/time.h>
+#define PRIuHICLOCK PRIu64
+#define PRIiHICLOCK PRIi64
+typedef uint64_t hiclock_t;
+#define HICLOCKS_PER_SEC 1000000
+#define hiclock_init()
+#elif defined(__WIN32) || defined(__WIN64)
+#include <windows.h>
+#define PRIuHICLOCK PRIu64
+#define PRIiHICLOCK PRIi64
+typedef LONGLONG hiclock_t;
+extern LONGLONG HICLOCKS_PER_SEC;
+extern void hiclock_init();
+#else
+#include <time.h>
+#define PRIuHICLOCK PRIu32
+#define PRIiHICLOCK PRIi32
+typedef clock_t hiclock_t;
+#define HICLOCKS_PER_SEC CLOCKS_PER_SEC
+#define hiclock_init()
+#endif
+
+extern hiclock_t hiclock();
+
+#endif
+
|