1
0
Fork 0

Fix redefine of null

This commit is contained in:
Pabloader 2025-05-12 15:37:18 +00:00
parent 5f4b19bdca
commit f5a09d3f44
1 changed files with 0 additions and 2 deletions

View File

@ -12,8 +12,6 @@ extern unsigned char __heap_base;
#define IMPORT(name) __attribute__((import_module("env"), import_name(#name)))
#define EXPORT(name) __attribute__((export_name(#name)))
#define NULL ((void*)0)
EXPORT(malloc) void* malloc(size_t);
EXPORT(free) void free(void*);
EXPORT(realloc) void* realloc(void*, size_t);