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 --- }