diff options
Diffstat (limited to 'src/include/debug.h')
| -rw-r--r-- | src/include/debug.h | 1 |
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)) |