#ifndef EPRINTF_EPRINTF_H #define EPRINTF_EPRINTF_H #include #include noreturn void eprintf(const char *fmt, ...) __attribute__((format(printf, 1, 2))); void weprintf(const char *fmt, ...) __attribute__((format(printf, 1, 2))); void deprintf(const char *fmt, ...) __attribute__((format(printf, 1, 2))); char *estrdup(const char *str); void *emalloc(size_t size); void *ecalloc(size_t nmemb, size_t size); void *erealloc(void *p, size_t size); void setprogname(const char *name); void setdebug(int d); #endif // !EPRINTF_EPRINTF_H