1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
This commit is contained in:
Alexander Medvednikov
2019-10-24 14:51:22 +03:00
parent 98c016b41d
commit dca49e43d9
4 changed files with 20 additions and 9 deletions

View File

@ -17,11 +17,6 @@ fn init() {
}
}
fn C.memcpy(byteptr, byteptr, int)
fn C.memmove(byteptr, byteptr, int)
//fn C.malloc(int) byteptr
fn C.realloc(byteptr, int) byteptr
pub fn exit(code int) {
C.exit(code)
}