ithewei 6 éve
szülő
commit
f9a79ba865
1 módosított fájl, 3 hozzáadás és 2 törlés
  1. 3 2
      hdef.h

+ 3 - 2
hdef.h

@@ -3,15 +3,16 @@
 
 #include "hplatform.h"
 
+#include <stdint.h>
 typedef unsigned char       uint8;
 typedef unsigned short      uint16;
 typedef unsigned int        uint32;
-typedef unsigned long long  uint64;
+typedef uint64_t            uint64;
 
 typedef char                int8;
 typedef short               int16;
 typedef int                 int32;
-typedef long long           int64;
+typedef int64_t             int64;
 
 typedef float               float32;
 typedef double              float64;