Files
Arquivotheca.SunOS-4.1.4/games/hack/alloc.c
seta75D ff309bfe1c Init
2021-10-11 18:37:13 -03:00

51 lines
876 B
C

#ifndef lint
static char sccsid[] = "@(#)alloc.c 1.1 94/10/31 SMI";
#endif
/* alloc.c - version 1.0.2 */
#ifdef LINT
/*
a ridiculous definition, suppressing
"possible pointer alignment problem" for (long *) malloc()
"enlarg defined but never used"
"ftell defined (in <stdio.h>) but never used"
from lint
*/
#include <stdio.h>
long *
alloc(n) unsigned n; {
long dummy = ftell(stderr);
if(n) dummy = 0; /* make sure arg is used */
return(&dummy);
}
#else
extern char *malloc();
extern char *realloc();
long *
alloc(lth)
register unsigned lth;
{
register char *ptr;
if(!(ptr = malloc(lth)))
panic("Cannot get %d bytes", lth);
return((long *) ptr);
}
long *
enlarge(ptr,lth)
register char *ptr;
register unsigned lth;
{
register char *nptr;
if(!(nptr = realloc(ptr,lth)))
panic("Cannot reallocate %d bytes", lth);
return((long *) nptr);
}
#endif LINT