blob: bc701e0134e2eef40beee551b835c88f13c68a73 [file] [log] [blame]
/**
* Copyright (C) 2013 Regents of the University of California.
* @author: Jeff Thompson <jefft0@remap.ucla.edu>
* See COPYING for copyright and distribution information.
*/
#include <stdlib.h>
#include "ndn_realloc.h"
unsigned char *ndn_realloc(struct ndn_DynamicUCharArray *self, unsigned char *array, unsigned int length)
{
return (unsigned char *)realloc(array, length);
}