blob: bbc5e157e3ddd40e582d73d744916d9e16d1435a [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
Jeff Thompson9254d742013-08-12 12:04:44 -07009unsigned char *ndn_realloc(struct ndn_DynamicUCharArray *self, unsigned char *array, unsigned int length)
Jeff Thompson45545092013-07-16 18:36:26 -070010{
11 return (unsigned char *)realloc(array, length);
12}