aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Page <pjpage98@gmail.com>2026-01-12 16:52:57 -0600
committerPaul Page <pjpage98@gmail.com>2026-01-12 16:52:57 -0600
commit7e7cd755275e768c114e4b778fd9552197f17f35 (patch)
treeb05b5575fd22f6b1bf37de7ecf72021c062e2388
parentebaf8779815833b816b98cc370c0cf74b1ee2bae (diff)
remove unneeded manual definitions
-rw-r--r--core/sys/orca/orca.odin14
1 files changed, 0 insertions, 14 deletions
diff --git a/core/sys/orca/orca.odin b/core/sys/orca/orca.odin
index ba47a13fa..a0fe0a041 100644
--- a/core/sys/orca/orca.odin
+++ b/core/sys/orca/orca.odin
@@ -9,9 +9,6 @@ import "core:c"
char :: c.char
// currently missing in the api.json
-window :: distinct u64
-
-// currently missing in the api.json
pool :: struct {
arena: arena,
freeList: list,
@@ -143,17 +140,6 @@ UNICODE_VARIATION_SELECTORS_SUPPLEMENT :: unicode_range { 0xe0100, 239 }
UNICODE_SUPPLEMENTARY_PRIVATE_USE_AREA_A :: unicode_range { 0xf0000, 65533 }
UNICODE_SUPPLEMENTARY_PRIVATE_USE_AREA_B :: unicode_range { 0x100000, 65533 }
-clock_kind :: enum c.int {
- MONOTONIC,
- UPTIME,
- DATE,
-}
-
-@(default_calling_convention="c", link_prefix="oc_")
-foreign {
- clock_time :: proc(clock: clock_kind) -> f64 ---
-}
-
file_write_slice :: proc(file: file, slice: []char) -> u64 {
return file_write(file, u64(len(slice)), raw_data(slice))
}