1
0
mirror of https://frontier.innolan.net/rainlance/amiga-tz.git synced 2026-05-07 01:00:45 +00:00

simplified

SCCS-file: ialloc.c
SCCS-SID: 8.27
This commit is contained in:
Arthur David Olson
1995-01-06 17:11:13 -05:00
committed by Paul Eggert
parent 0a177f5bff
commit cd1bc5f8ef

View File

@@ -31,11 +31,11 @@ const int n;
#ifdef MAL
register char * result;
result = malloc((alloc_size_T) nonzero(n));
result = malloc((size_t) nonzero(n));
return NULLMAL(result) ? NULL : result;
#endif /* defined MAL */
#ifndef MAL
return malloc((alloc_size_T) nonzero(n));
return malloc((size_t) nonzero(n));
#endif /* !defined MAL */
}
@@ -46,7 +46,7 @@ int elsize;
{
if (nelem == 0 || elsize == 0)
nelem = elsize = 1;
return calloc((alloc_size_T) nelem, (alloc_size_T) elsize);
return calloc((size_t) nelem, (size_t) elsize);
}
void *
@@ -56,7 +56,7 @@ const int size;
{
if (NULLMAL(pointer))
return imalloc(size);
return realloc((void *) pointer, (alloc_size_T) nonzero(size));
return realloc((void *) pointer, (size_t) nonzero(size));
}
char *