List function decls in alphabetical order

This commit is contained in:
sin 2014-06-30 18:42:08 +01:00
parent 55dbbb7b3f
commit b03a021983
1 changed files with 5 additions and 5 deletions

10
util.h
View File

@ -13,17 +13,17 @@ char *agetcwd(void);
/* apathmax.c */
void apathmax(char **, long *);
/* eprintf.c */
void enprintf(int, const char *, ...);
void eprintf(const char *, ...);
void weprintf(const char *, ...);
/* ealloc.c */
void *ecalloc(size_t, size_t);
void *emalloc(size_t size);
void *erealloc(void *, size_t);
char *estrdup(const char *);
/* eprintf.c */
void enprintf(int, const char *, ...);
void eprintf(const char *, ...);
void weprintf(const char *, ...);
/* estrtol.c */
long estrtol(const char *, int);