forgot an extern declaration ebe68f65
Anselm R. Garbe · 2007-02-19 16:04 2 file(s) · +2 −1
dwm.h +1 −1
105 105
extern void focusprev(Arg *arg);		/* focuses previous visible client, arg is ignored */
106 106
extern void killclient(Arg *arg);		/* kill c nicely */
107 107
extern void manage(Window w, XWindowAttributes *wa);	/* manage new client */
108 -
Client *nexttiled(Client *c);			/* returns tiled successor of c */
108 +
extern Client *nexttiled(Client *c);		/* returns tiled successor of c */
109 109
extern void resize(Client *c, int x, int y,
110 110
		int w, int h, Bool sizehints);	/* resize with given coordinates c*/
111 111
extern void updatesizehints(Client *c);		/* update the size hint variables of c */
screen.c +1 −0
83 83
	}
84 84
	restack();
85 85
}
86 +
86 87
void
87 88
dotile(void) {
88 89
	unsigned int i, n, nx, ny, nw, nh, mw, mh, tw, th;