about summary refs log tree commit diff stats
path: root/dwm.h
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-02-19 16:04:38 +0100
committerAnselm R. Garbe <arg@suckless.org>2007-02-19 16:04:38 +0100
commitebe68f650a57be4ed41468c8ba48ea7c5177e574 (patch)
treedd20510ed1f485e7ce26f949d29324a6ad59e696 /dwm.h
parentdf9fd28f9a32dcff356c349b9a64b4e8cfb82980 (diff)
downloaddwm-ebe68f650a57be4ed41468c8ba48ea7c5177e574.tar.gz
forgot an extern declaration
Diffstat (limited to 'dwm.h')
-rw-r--r--dwm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/dwm.h b/dwm.h
index a96eec1..a4dc2ba 100644
--- a/dwm.h
+++ b/dwm.h
@@ -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 */