shithub: mq

ref: ca32bdbe21c2092e50d6945950463a76520f499f
dir: mq/src/util.h

View raw version
extern int DEBUG;

#define D(force, code) \
	if((DEBUG) || (force)) do{code}while(0);

void dprint(int force, char *fmt, ...);

void* emalloc(ulong sz);
char* estrdup(char *s);