From 986e4981dfbb75ec03ece57b7632523f368f0110 Mon Sep 17 00:00:00 2001 From: sin Date: Thu, 29 Aug 2013 11:14:00 +0100 Subject: [PATCH] No need to name the parameters in the function decls --- util.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util.h b/util.h index cf11fb2..108167c 100644 --- 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);