blob: 397834bab8a893ea730984f638ca6df6b68effba [file] [log] [blame]
/**
* @author: Jeff Thompson
* See COPYING for copyright and distribution information.
*/
#include <stdlib.h>
#include "ndn_realloc.h"
unsigned char *ndn_realloc(unsigned char *array, unsigned int length)
{
return (unsigned char *)realloc(array, length);
}