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