shithub: mq

ref: 41c3ba6e0a21f385552bd9c5d506dc1aa3e9a7a0
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);