Browse Source

forgot an extern declaration

master
Anselm R. Garbe 18 years ago
parent
commit
ebe68f650a
2 changed files with 2 additions and 1 deletions
  1. +1
    -1
      dwm.h
  2. +1
    -0
      screen.c

+ 1
- 1
dwm.h View File

@ -105,7 +105,7 @@ extern void focusnext(Arg *arg); /* focuses next visible client, arg is ignored
extern void focusprev(Arg *arg); /* focuses previous visible client, arg is ignored */
extern void killclient(Arg *arg); /* kill c nicely */
extern void manage(Window w, XWindowAttributes *wa); /* manage new client */
Client *nexttiled(Client *c); /* returns tiled successor of c */
extern Client *nexttiled(Client *c); /* returns tiled successor of c */
extern void resize(Client *c, int x, int y,
int w, int h, Bool sizehints); /* resize with given coordinates c*/
extern void updatesizehints(Client *c); /* update the size hint variables of c */


+ 1
- 0
screen.c View File

@ -83,6 +83,7 @@ dofloat(void) {
}
restack();
}
void
dotile(void) {
unsigned int i, n, nx, ny, nw, nh, mw, mh, tw, th;


Loading…
Cancel
Save