1
0
mirror of https://frontier.innolan.net/rainlance/amiga-tz.git synced 2025-12-08 20:14:15 +00:00

icfree and ecfree added

SCCS-file: ialloc.c
SCCS-SID: 7.14
This commit is contained in:
Arthur David Olson
1987-03-29 17:55:10 -05:00
committed by Paul Eggert
parent c07b3825e1
commit 3474d90f4d

View File

@ -90,3 +90,10 @@ char * p;
if (!NULLMAL(p))
free(p);
}
icfree(p)
char * p;
{
if (!NULLMAL(p))
free(p);
}