Pristine Ack-5.5
[Ack-5.5.git] / modules / src / alloc / Srealloc.c
1 /* $Id: Srealloc.c,v 1.4 1994/06/24 11:06:33 ceriel Exp $ */
2 /*
3  * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
4  * See the copyright notice in the ACK home directory, in the file "Copyright".
5  */
6 /*      M E M O R Y  A L L O C A T I O N  R O U T I N E S       */
7
8 /*      The memory allocation routines offered in this file are:
9
10         char *Srealloc(ptr, n)  : reallocate buffer to n bytes
11 */
12
13 #include        "alloc.h"
14
15 char *
16 Srealloc(str, sz)
17         char str[];
18         unsigned int sz;
19 {
20         return Realloc(str, sz);
21 }