mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
remove string.h include
This commit is contained in:
@@ -1,8 +1,10 @@
|
||||
module builtin
|
||||
|
||||
|
||||
fn C.memcpy(byteptr, byteptr, int)
|
||||
fn C.memmove(byteptr, byteptr, int)
|
||||
// <string.h>
|
||||
fn memcpy(byteptr, byteptr, int) voidptr
|
||||
fn memmove(byteptr, byteptr, int)
|
||||
|
||||
//fn C.malloc(int) byteptr
|
||||
fn C.realloc(a byteptr, b int) byteptr
|
||||
|
||||
@@ -14,6 +16,7 @@ fn C.isdigit(s byteptr) bool
|
||||
|
||||
|
||||
|
||||
|
||||
// <execinfo.h>
|
||||
fn backtrace(a voidptr, b int) int
|
||||
fn backtrace_symbols_fd(voidptr, int, int)
|
||||
|
||||
Reference in New Issue
Block a user