*** empty log message ***

This commit is contained in:
erikb
1986-03-10 13:07:55 +00:00
parent c21def03db
commit bc296e2dcc
105 changed files with 16543 additions and 0 deletions

16
lang/cem/cemcom/alloc.h Normal file
View File

@@ -0,0 +1,16 @@
/* $Header$ */
/* PROGRAM'S INTERFACE TO MEMORY ALLOCATION ROUTINES */
/* This file serves as the interface between the program and the
memory allocating routines.
There are 3 memory allocation routines:
char *Malloc(n) to allocate n bytes
char *Salloc(str, n) to allocate n bytes
and fill them with string str
char *Realloc(str, n) reallocate the string at str to n bytes
*/
extern char *Salloc(), *malloc(), *realloc();
#define Malloc(n) malloc((unsigned)(n))
#define Srealloc(ptr,n) realloc(ptr, (unsigned)(n))