#ifndef _COVER_H_
#define _COVER_H_

/* PURPOSE:
 *    COVER.H: Public cover functions.
 * HISTORY:
 *    Ian D. Allen   idallen@freenet.carleton.ca
 */

/* Cover functions; same arguments as C Library functions */
void eprintf(char *fmt, ...);	/* cover for fprintf(stderr, */
void *mymalloc(unsigned int size);
void *myrealloc(void *p, unsigned int size);

#endif /* _COVER_H_ */
