From 62745b8abe391a3b1c30f6db51db41cc8b491a50 Mon Sep 17 00:00:00 2001 From: Mashrafi Rahman <69859785+Mashrafidipto@users.noreply.github.com> Date: Fri, 16 Jan 2026 12:10:11 +0600 Subject: [PATCH] Update 03-calling-conventions.md --- .../version-0.15.x/04-working-with-c/03-calling-conventions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/versioned_docs/version-0.15.x/04-working-with-c/03-calling-conventions.md b/website/versioned_docs/version-0.15.x/04-working-with-c/03-calling-conventions.md index ebae90d..ef7687f 100644 --- a/website/versioned_docs/version-0.15.x/04-working-with-c/03-calling-conventions.md +++ b/website/versioned_docs/version-0.15.x/04-working-with-c/03-calling-conventions.md @@ -10,7 +10,7 @@ conventions available may be found in Here we make use of the cdecl calling convention. ```zig -fn add(a: u32, b: u32) callconv(.C) u32 { +fn add(a: u32, b: u32) callconv(.c) u32 { return a + b; } ```