aboutsummaryrefslogtreecommitdiff
path: root/core/runtime
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2022-05-12 15:47:24 +0100
committergingerBill <bill@gingerbill.org>2022-05-12 15:47:24 +0100
commitf002857edce5ea53561608fa555bbbd94b7fa42a (patch)
tree72706817d402070beecfa6d777e52d33b1e2f3c5 /core/runtime
parent97739da85a9812e37d1c349eb36f899b157dc8f5 (diff)
Clean up `core:time` to be consistent across all platforms
Diffstat (limited to 'core/runtime')
-rw-r--r--core/runtime/procs.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/runtime/procs.odin b/core/runtime/procs.odin
index 5a1d11fe0..782efa773 100644
--- a/core/runtime/procs.odin
+++ b/core/runtime/procs.odin
@@ -4,7 +4,7 @@ when ODIN_NO_CRT && ODIN_OS == .Windows {
foreign import lib "system:NtDll.lib"
@(private="file")
- @(default_calling_convention="std")
+ @(default_calling_convention="stdcall")
foreign lib {
RtlMoveMemory :: proc(dst, src: rawptr, length: int) ---
RtlFillMemory :: proc(dst: rawptr, length: int, fill: i32) ---