#ifndef EPRINTF_H #define EPRINTF_H #include noreturn void eprintf(const char *fmt, ...) __attribute__((format(printf, 1, 2))); void weprintf(const char *fmt, ...) __attribute__((format(printf, 1, 2))); char *estrdup(const char *); void *emalloc(size_t); void *erealloc(void *, size_t); char *progname(void); void setprogname(const char *); #endif /* !EPRINTF_H */