Remove uses of deprecated callconv aliases

This commit is contained in:
Linus Groh
2025-03-03 18:01:47 +00:00
parent 05937b362a
commit 79460d4a3e
251 changed files with 826 additions and 822 deletions

View File

@@ -453,7 +453,7 @@ export fn fuzzer_coverage_id() u64 {
return fuzzer.coverage_id;
}
var fuzzer_one: *const fn (input_ptr: [*]const u8, input_len: usize) callconv(.C) void = undefined;
var fuzzer_one: *const fn (input_ptr: [*]const u8, input_len: usize) callconv(.c) void = undefined;
export fn fuzzer_start(testOne: @TypeOf(fuzzer_one)) void {
fuzzer_one = testOne;