#ifndef _COVER_H_
#define _COVER_H_

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

#include "mem.h"

/* 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);
char *mystrdup(char *str);

#endif /* _COVER_H_ */
