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

fix fopen definition

This commit is contained in:
Alexander Medvednikov 2019-12-12 21:03:08 +03:00
parent bd833deef3
commit 0eeb607ffd

View File

@ -36,7 +36,7 @@ fn C.fputs(byteptr) int
fn C.fflush(byteptr) int fn C.fflush(byteptr) int
// TODO define args in these functions // TODO define args in these functions
fn C.fseek() int fn C.fseek() int
fn C.fopen() int fn C.fopen() voidptr
fn C.fwrite() int fn C.fwrite() int
fn C.fclose() int fn C.fclose() int
fn C.pclose() int fn C.pclose() int