shithub: mq

ref: 3418e498f2a4c0e763bbe9d2191b646c6bde5d4d
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);