ubase

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

commit 986e4981dfbb75ec03ece57b7632523f368f0110
parent 6a56bdf4caeb2501487988790b2f611b539be4f3
Author: sin <sin@2f30.org>
Date:   Thu, 29 Aug 2013 11:14:00 +0100

No need to name the parameters in the function decls

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

diff --git a/util.h b/util.h @@ -8,10 +8,10 @@ extern char *argv0; char *agetcwd(void); void apathmax(char **, long *); -void devtotty(int dev, int *tty_maj, int *tty_min); +void devtotty(int, int *, int *); void enprintf(int, const char *, ...); void eprintf(const char *, ...); long estrtol(const char *, int); void putword(const char *); void recurse(const char *, void (*)(const char *)); -char *ttytostr(int tty_maj, int tty_min); +char *ttytostr(int, int);