From 9d85f236b8961b56e2923386ef4c3f82006820da Mon Sep 17 00:00:00 2001 From: Hasen Judy Date: Tue, 18 Dec 2018 21:47:23 +0900 Subject: [PATCH] fix missing declaration in osx --- core/os/os_osx.odin | 1 + 1 file changed, 1 insertion(+) diff --git a/core/os/os_osx.odin b/core/os/os_osx.odin index c86875b8f..3a91e21d1 100644 --- a/core/os/os_osx.odin +++ b/core/os/os_osx.odin @@ -12,6 +12,7 @@ Handle :: distinct i32; File_Time :: distinct u64; Errno :: distinct int; +INVALID_HANDLE :: ~Handle(0); O_RDONLY :: 0x00000; O_WRONLY :: 0x00001;