diff options
| author | Platin21 <arminmops@icloud.com> | 2022-01-23 23:14:46 +0100 |
|---|---|---|
| committer | Platin21 <arminmops@icloud.com> | 2022-01-23 23:14:46 +0100 |
| commit | ab3bae5c0265f653c51eebaafdc17f0e16dccb8f (patch) | |
| tree | ed6c3b30b2400a2ff376415179766288141ec263 /core/sys | |
| parent | 540c5400a0c7b2e3cc40bba4e00f4b13c18f9d7c (diff) | |
Fixed package name
Diffstat (limited to 'core/sys')
| -rw-r--r-- | core/sys/darwin/xnu_system_call_helpers.odin | 2 | ||||
| -rw-r--r-- | core/sys/darwin/xnu_system_call_numbers.odin | 2 | ||||
| -rw-r--r-- | core/sys/darwin/xnu_system_call_wrappers.odin | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/core/sys/darwin/xnu_system_call_helpers.odin b/core/sys/darwin/xnu_system_call_helpers.odin index eabbb73df..d6bf9fd62 100644 --- a/core/sys/darwin/xnu_system_call_helpers.odin +++ b/core/sys/darwin/xnu_system_call_helpers.odin @@ -1,4 +1,4 @@ -package sys +package darwin import "core:strings" import "core:c" diff --git a/core/sys/darwin/xnu_system_call_numbers.odin b/core/sys/darwin/xnu_system_call_numbers.odin index 4aba8a830..b90373fdc 100644 --- a/core/sys/darwin/xnu_system_call_numbers.odin +++ b/core/sys/darwin/xnu_system_call_numbers.odin @@ -1,4 +1,4 @@ -package sys +package darwin unix_offset_syscall :: proc(number: System_Call_Number) -> uintptr { return uintptr(number) + uintptr(0x2000000) diff --git a/core/sys/darwin/xnu_system_call_wrappers.odin b/core/sys/darwin/xnu_system_call_wrappers.odin index a584299f8..4cf86862f 100644 --- a/core/sys/darwin/xnu_system_call_wrappers.odin +++ b/core/sys/darwin/xnu_system_call_wrappers.odin @@ -1,4 +1,4 @@ -package sys +package darwin import "core:c" import "core:intrinsics" |