bring back string.h for now
parent
fbd41eacba
commit
f6f5b8cfb1
|
@ -3,7 +3,7 @@ module builtin
|
|||
|
||||
// <string.h>
|
||||
fn C.memcpy(byteptr, byteptr, int) voidptr
|
||||
fn C.memmove(byteptr, byteptr, int)
|
||||
fn C.memmove(byteptr, byteptr, int) voidptr
|
||||
|
||||
//fn C.malloc(int) byteptr
|
||||
fn C.realloc(a byteptr, b int) byteptr
|
||||
|
|
|
@ -9,7 +9,7 @@ CommonCHeaders = '
|
|||
#include <signal.h>
|
||||
#include <stdarg.h> // for va_list
|
||||
#include <inttypes.h> // int64_t etc
|
||||
//#include <string.h> // memcpy
|
||||
#include <string.h> // memcpy
|
||||
|
||||
#ifndef _WIN32
|
||||
#include <ctype.h>
|
||||
|
|
Loading…
Reference in New Issue