# HG changeset patch # User June Park # Date 1767208644 28800 # Node ID 4b96794c8d59bf0833b677d7d5e5dc7f04621a00 # Parent ede391ac83c8f86980dc627a2807cd7ce003b54b [Dowa] Added 64 type diff -r ede391ac83c8 -r 4b96794c8d59 dowa/dowa.h --- 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 {