#ifndef SETMALLOC
#define SETMALLOC

#ifdef __cplusplus
extern "C" {
#endif

	extern char *stralloc(unsigned size);
	extern char *strdupcat(char *p,char *q);
	extern char *strrepcat(char *p,char *q);
	extern int   is_empty(char *p);

#define setmalloc(X) stralloc(X)

#ifdef _SunOS
	extern int fprintf();
	extern int printf();
	extern int fflush();
	extern int fclose();
	extern int pclose();
#endif

#ifdef __cplusplus
	}
#endif

#endif

