CCF Memory Functions

#ifndef	IMW_MEMFNS_H
#define	IMW_MEMFNS_H

#include	<stdlib.h>

/* like malloc(), realloc(), free(), but panic if there's no memory */

void	*my_malloc	(size_t n);
void	*my_realloc	(void *orig, size_t new_n);
void	 my_free	(void *p);

#endif	/* IMW_MEMFNS_H */