about summary refs log tree commit diff stats
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-rw-r--r--src/include/debug.h1
1 files changed, 1 insertions, 0 deletions
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))