/* extern */
 
 Client *
-getnext(Client *c)
-{
+getnext(Client *c) {
        for(; c && !isvisible(c); c = c->next);
        return c;
 }
 
 Client *
-getprev(Client *c)
-{
+getprev(Client *c) {
        for(; c && !isvisible(c); c = c->prev);
        return c;
 }
 
 void
-initrregs()
-{
+initrregs(void) {
        unsigned int i;
        regex_t *reg;
 
 }
 
 void
-settags(Client *c, Client *trans)
-{
+settags(Client *c, Client *trans) {
        char prop[512];
        unsigned int i, j;
        regmatch_t tmp;
 }
 
 void
-tag(Arg *arg)
-{
+tag(Arg *arg) {
        unsigned int i;
 
        if(!sel)
 }
 
 void
-toggletag(Arg *arg)
-{
+toggletag(Arg *arg) {
        unsigned int i;
 
        if(!sel)