From fbd41eacba9ba88fe25ab1654d86415f93fc53d4 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Sat, 26 Oct 2019 11:43:25 +0300 Subject: [PATCH] remove string.h include 1 --- vlib/builtin/cfns.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vlib/builtin/cfns.v b/vlib/builtin/cfns.v index a855182390..1e5654c544 100644 --- a/vlib/builtin/cfns.v +++ b/vlib/builtin/cfns.v @@ -2,8 +2,8 @@ module builtin // -fn memcpy(byteptr, byteptr, int) voidptr -fn memmove(byteptr, byteptr, int) +fn C.memcpy(byteptr, byteptr, int) voidptr +fn C.memmove(byteptr, byteptr, int) //fn C.malloc(int) byteptr fn C.realloc(a byteptr, b int) byteptr