No need to name the parameters in the function decls

This commit is contained in:
sin 2013-08-29 11:14:00 +01:00
parent 6a56bdf4ca
commit 986e4981df
1 changed files with 2 additions and 2 deletions

4
util.h
View File

@ -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);