1 2 3 4 5 6 7 8 9 10
/* See LICENSE file for copyright and license details. */ #include <stdlib.h> void weprintf(const char *fmt, ...); #define eprintf(...)\ (weprintf(__VA_ARGS__), exit(1)) #define enprintf(status, ...)\ (weprintf(__VA_ARGS__), exit(status))