Jeff Thompson | 4554509 | 2013-07-16 18:36:26 -0700 | [diff] [blame] | 1 | /** |
2 | * @author: Jeff Thompson | ||||
3 | * See COPYING for copyright and distribution information. | ||||
4 | */ | ||||
5 | |||||
6 | #include <stdlib.h> | ||||
7 | #include "ndn_realloc.h" | ||||
8 | |||||
9 | unsigned char *ndn_realloc(unsigned char *array, unsigned int length) | ||||
10 | { | ||||
11 | return (unsigned char *)realloc(array, length); | ||||
12 | } |