16868Srrh # include "../hdr/macros.h"
2*19939Ssam # include <stdio.h>
36868Srrh SCCSID(@(#)xalloc	2.1);
46868Srrh 
xalloc(asize)56868Srrh xalloc(asize)
66868Srrh unsigned asize;
76868Srrh {
86868Srrh 
9*19939Ssam 	fprintf(stderr, "Call to xalloc!?!\n");
106868Srrh }
116868Srrh 
126868Srrh 
xfree(aptr)136868Srrh xfree(aptr)
146868Srrh char *aptr;
156868Srrh {
166868Srrh 
17*19939Ssam 	fprintf(stderr, "Call to xfree!?!\n");
186868Srrh }
196868Srrh 
206868Srrh 
xfreeall()216868Srrh xfreeall()
226868Srrh {
23*19939Ssam 
246868Srrh }
25