diff options
Diffstat (limited to 'eprintf.h')
-rw-r--r-- | eprintf.h | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -6,10 +6,11 @@ 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 *estrdup(const char *str); +void *emalloc(size_t size); +void *ecalloc(size_t nmemb, size_t size); +void *erealloc(void *p, size_t size); char *progname(void); -void setprogname(const char *); +void setprogname(const char *name); #endif /* !EPRINTF_H */ |