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