added Realloc, split into separate files
This commit is contained in:
25
modules/src/alloc/Srealloc.c
Normal file
25
modules/src/alloc/Srealloc.c
Normal file
@@ -0,0 +1,25 @@
|
||||
/* $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
|
||||
|
||||
This file imports routines from "system".
|
||||
*/
|
||||
|
||||
#include <system.h>
|
||||
#include "in_all.h"
|
||||
#include "alloc.h"
|
||||
|
||||
EXPORT char *
|
||||
Srealloc(str, sz)
|
||||
char str[];
|
||||
unsigned int sz;
|
||||
{
|
||||
return Realloc(str, sz);
|
||||
}
|
||||
Reference in New Issue
Block a user