aboutsummaryrefslogtreecommitdiffstats
path: root/memory/wrap/realloc.c
blob: 5efb62ec39cf3ba80095423745eb716f3ac0c5b3 (plain) (blame)
1
2
3
4
#include "memory.h"
#include <stdlib.h>

void *_realloc_wrap(void *buffer, size_t size) { return realloc(buffer, size); }