From 608eadf5e29ce727423ea89f7dee2384a046b061 Mon Sep 17 00:00:00 2001 From: Ronald1985 Date: Mon, 7 Aug 2023 15:49:40 +0100 Subject: [PATCH] Changed the style for the foreign block --- foreign.odin | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/foreign.odin b/foreign.odin index ad006de..8f4ae01 100644 --- a/foreign.odin +++ b/foreign.odin @@ -2,6 +2,7 @@ package sysinfo import c "core:c/libc" -@(default_calling_convention = "c") foreign { +@(default_calling_convention = "c") +foreign { statvfs :: proc(path: cstring, stat: ^Sys_statvfs) -> c.int --- }