blob: bc701e0134e2eef40beee551b835c88f13c68a73 [file] [log] [blame]
Jeff Thompson45545092013-07-16 18:36:26 -07001/**
Jeff Thompson7687dc02013-09-13 11:54:07 -07002 * Copyright (C) 2013 Regents of the University of California.
3 * @author: Jeff Thompson <jefft0@remap.ucla.edu>
Jeff Thompson45545092013-07-16 18:36:26 -07004 * See COPYING for copyright and distribution information.
5 */
6
7#include <stdlib.h>
8#include "ndn_realloc.h"
9
Jeff Thompson9254d742013-08-12 12:04:44 -070010unsigned char *ndn_realloc(struct ndn_DynamicUCharArray *self, unsigned char *array, unsigned int length)
Jeff Thompson45545092013-07-16 18:36:26 -070011{
12 return (unsigned char *)realloc(array, length);
13}