ack/modules/src/alloc/Srealloc.c
1989-10-11 15:25:07 +00:00

21 lines
462 B
C

/* $Header$ */
/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
/* M E M O R Y A L L O C A T I O N R O U T I N E S */
/* The memory allocation routines offered in this file are:
char *Srealloc(ptr, n) : reallocate buffer to n bytes
*/
#include "alloc.h"
char *
Srealloc(str, sz)
char str[];
unsigned int sz;
{
return Realloc(str, sz);
}