#include <stdio.h>

#define err_ret(r, fmt, ...) {\
	fprintf(stderr, "[%s:%d] " fmt "\n", __FILE__, __LINE__, ##__VA_ARGS__); \
	return r; \
}