1
0
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:
Alexander Medvednikov
2019-10-26 11:14:16 +03:00
parent 58f0503f6d
commit ef45a87882
3 changed files with 7 additions and 4 deletions

View File

@@ -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)