1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

checker: check number of C function arguments for some cases (#8444)

This commit is contained in:
Nick Treleaven
2021-01-30 17:33:36 +00:00
committed by GitHub
parent 2cadb3e4d8
commit 64d12cdc8d
6 changed files with 65 additions and 15 deletions

View File

@@ -16,7 +16,7 @@ fn C.ftell(fp voidptr) int
fn C.sigaction(int, voidptr, int)
fn C.open(charptr, int, int) int
fn C.open(charptr, int, ...int) int
fn C.fdopen(int, string) voidptr