diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-08-08 13:02:37 +0100 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2025-08-08 13:02:37 +0100 |
| commit | 8ff15eaf6905eb167dc541cd2558599a0a334c28 (patch) | |
| tree | 735dded7269f8546acdc584a7442d37a615bed00 /core/sys/unix | |
| parent | aa747a1c10c3b20c589e610d1f7dffe4ddaff4fa (diff) | |
More contextless fixes
Diffstat (limited to 'core/sys/unix')
| -rw-r--r-- | core/sys/unix/sysctl_freebsd.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/sys/unix/sysctl_freebsd.odin b/core/sys/unix/sysctl_freebsd.odin index f5fee6c6c..cdd591a5b 100644 --- a/core/sys/unix/sysctl_freebsd.odin +++ b/core/sys/unix/sysctl_freebsd.odin @@ -3,7 +3,7 @@ package unix import "base:intrinsics" -sysctl :: proc(mib: []i32, val: ^$T) -> (ok: bool) { +sysctl :: proc "contextless" (mib: []i32, val: ^$T) -> (ok: bool) { mib := mib result_size := u64(size_of(T)) |