changeset 74:4b96794c8d59

[Dowa] Added 64 type
author June Park <parkjune1995@gmail.com>
date Wed, 31 Dec 2025 11:17:24 -0800
parents ede391ac83c8
children ae6a88e6e484
files dowa/dowa.h
diffstat 1 files changed, 9 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/dowa/dowa.h	Wed Dec 31 09:07:29 2025 -0800
+++ b/dowa/dowa.h	Wed Dec 31 11:17:24 2025 -0800
@@ -48,13 +48,15 @@
 } while (0)
 
 // Fixed-width integer types
-typedef unsigned int   uint32;
-typedef int            int32;
-typedef unsigned short uint16;
-typedef short          int16;
-typedef unsigned char  uint8;
-typedef char           int8;
-typedef char           boolean;
+typedef unsigned long long   uint64;
+typedef long long            int64;
+typedef unsigned int         uint32;
+typedef int                  int32;
+typedef unsigned short       uint16;
+typedef short                int16;
+typedef unsigned char        uint8;
+typedef char                 int8;
+typedef char                 boolean;
 
 // --- Arena Allocator --- //
 typedef struct {