fixing missing extern declars in dwm.h for {de,at}tach()
authorAnselm R. Garbe <arg@suckless.org>
Thu, 22 Feb 2007 08:02:04 +0100
changeset 814 6fa419036c2e
parent 813 0ed770c96e51
child 815 aca93bbd6e8d
fixing missing extern declars in dwm.h for {de,at}tach()
dwm.h
--- a/dwm.h	Thu Feb 22 07:59:13 2007 +0100
+++ b/dwm.h	Thu Feb 22 08:02:04 2007 +0100
@@ -102,7 +102,9 @@
 extern Window root, barwin;
 
 /* client.c */
+extern void attach(Client *c);			/* attaches c to global client list */
 extern void configure(Client *c);		/* send synthetic configure event */
+extern void detach(Client *c);			/* detaches c from global client list */
 extern void focus(Client *c);			/* focus c, c may be NULL */
 extern void killclient(Arg arg);		/* kill c nicely */
 extern void manage(Window w, XWindowAttributes *wa);	/* manage new client */