From b03a02198320366849b9dae0f489a3666c3d1f89 Mon Sep 17 00:00:00 2001 From: sin Date: Mon, 30 Jun 2014 18:42:08 +0100 Subject: [PATCH] List function decls in alphabetical order --- util.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/util.h b/util.h index f43c6ee..cb75bc6 100644 --- 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);