aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2018-12-18 13:05:44 +0000
committerGitHub <noreply@github.com>2018-12-18 13:05:44 +0000
commitc508e46ed91bbe2dd22845d41f3fb1f7b928f7f9 (patch)
tree2ec79479cedf1a00f03358acb00f1f4fe172e5fc
parent3a05a2e562f59768eea8e2c0dacb77c4247cea1b (diff)
parent9d85f236b8961b56e2923386ef4c3f82006820da (diff)
Merge pull request #308 from hasenj/master
fix missing declaration in osx
-rw-r--r--core/os/os_osx.odin1
1 files changed, 1 insertions, 0 deletions
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;