From f489761e682b75ede8754e9f9be48fa29ebaeb10 Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Sat, 11 Jan 2025 10:25:27 +0100 Subject: [BOX32] Improved elf memory managment for 32bits process --- src/include/debug.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/include/debug.h') diff --git a/src/include/debug.h b/src/include/debug.h index ec1fb9d5..c710a249 100644 --- a/src/include/debug.h +++ b/src/include/debug.h @@ -196,6 +196,7 @@ void* box32_realloc(void* p, size_t s); void box32_free(void* p); void* box32_memalign(size_t align, size_t s); size_t box32_malloc_usable_size(void* p); +char* box32_strdup(const char* s); #define actual_calloc(A, B) (box64_is32bits?box32_calloc(A, B):box_calloc(A, B)) #define actual_malloc(A) (box64_is32bits?box32_malloc(A):box_malloc(A)) -- cgit 1.4.1