shithub: mq

ref: 5d36e30a4110e8c39daec37ddaa1a55e19ab8e02
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);