/** | |
* 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); | |
} |