shithub: mq

ref: 41f14ba45c88568a511e27bcc157ef409616bc48
dir: /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);