ubase

suckless linux base utils
git clone git://git.2f30.org/ubase
Log | Files | Refs | README | LICENSE

commit b03a02198320366849b9dae0f489a3666c3d1f89
parent 55dbbb7b3f726aa6fb836961f35d6128b6aa8adb
Author: sin <sin@2f30.org>
Date:   Mon, 30 Jun 2014 18:42:08 +0100

List function decls in alphabetical order

Diffstat:
Mutil.h | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/util.h b/util.h @@ -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);