mirror of git://git.suckless.org/sbase
No need to name the parameters in the function decls
This commit is contained in:
parent
6a56bdf4ca
commit
986e4981df
4
util.h
4
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);
|
||||
|
|
Loading…
Reference in New Issue