shithub: mq

ref: 02ce9b85e1a75ace6e7a9b78bb5533b9d4f8569d
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);