aboutsummaryrefslogtreecommitdiff
path: root/lib/std/os
diff options
context:
space:
mode:
authorJonathan Marler <johnnymarler@gmail.com>2022-02-19 12:33:43 -0700
committerJonathan Marler <johnnymarler@gmail.com>2022-05-11 18:41:54 -0600
commit2ddfe16e1e21ee9bae5adcbfe4b6f4cdcf61a12b (patch)
tree164401b62af95f63ac37f209bc8e4bfbc4a6fa78 /lib/std/os
parenta38e6a64d32974bebb1c338dac5e56a35c8bcac4 (diff)
downloadzig-2ddfe16e1e21ee9bae5adcbfe4b6f4cdcf61a12b.tar.gz
zig-2ddfe16e1e21ee9bae5adcbfe4b6f4cdcf61a12b.zip
fix ntdll extern casing
Co-authored-by: Veikka Tuominen <git@vexu.eu>
Diffstat (limited to 'lib/std/os')
-rw-r--r--lib/std/os/windows/ntdll.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/std/os/windows/ntdll.zig b/lib/std/os/windows/ntdll.zig
index 5817e482e7..ca033cc367 100644
--- a/lib/std/os/windows/ntdll.zig
+++ b/lib/std/os/windows/ntdll.zig
@@ -229,13 +229,13 @@ pub extern "ntdll" fn RtlEqualUnicodeString(
CaseInSensitive: BOOLEAN,
) callconv(WINAPI) BOOLEAN;
-pub extern "NtDll" fn RtlUpcaseUnicodeString(
+pub extern "ntdll" fn RtlUpcaseUnicodeString(
DestinationString: *UNICODE_STRING,
SourceString: *const UNICODE_STRING,
AllocateDestinationString: BOOLEAN,
) callconv(WINAPI) NTSTATUS;
-pub extern "NtDll" fn RtlUpcaseUnicodeChar(
+pub extern "ntdll" fn RtlUpcaseUnicodeChar(
SourceCharacter: u16,
) callconv(WINAPI) u16;