blob: f3147f41f56210db981f4af67656dd4aa4a7f19a [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 Thompson97223af2013-09-24 17:01:27 -070010uint8_t *ndn_realloc(struct ndn_DynamicUInt8Array *self, uint8_t *array, size_t length)
Jeff Thompson45545092013-07-16 18:36:26 -070011{
Jeff Thompson10ad12a2013-09-24 16:19:11 -070012 return (uint8_t *)realloc(array, length);
Jeff Thompson45545092013-07-16 18:36:26 -070013}