about summary refs log tree commit diff
path: root/calmwm.h
diff options
context:
space:
mode:
authoroga <oga>2009-08-24 21:22:48 +0000
committeroga <oga>2009-08-24 21:22:48 +0000
commit09d88f4a18623fff580e7381aa242dae5b53cc18 (patch)
tree78c42d03fba77fa3f3cef893d8b720770fdab4ad /calmwm.h
parente7f0d63413565065d6681acb5ca53654a473e126 (diff)
downloadcwm-09d88f4a18623fff580e7381aa242dae5b53cc18.tar.gz
cwm-09d88f4a18623fff580e7381aa242dae5b53cc18.tar.xz
cwm-09d88f4a18623fff580e7381aa242dae5b53cc18.zip
Instead of having a function that just calls TAILQ_INIT on a global, use
TAILQ_HEAD_INITIALIZER() and drop the function.

ok okan@
Diffstat (limited to 'calmwm.h')
-rw-r--r--calmwm.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/calmwm.h b/calmwm.h
index eb4c0f2..a60dee1 100644
--- a/calmwm.h
+++ b/calmwm.h
@@ -327,7 +327,6 @@ int			 input_keycodetrans(KeyCode, u_int, enum ctltype *,
 __dead void		 usage(void);
 
 struct client_ctx	*client_find(Window);
-void			 client_init(void);
 struct client_ctx	*client_new(Window, struct screen_ctx *, int);
 int			 client_delete(struct client_ctx *);
 void			 client_setactive(struct client_ctx *, int);
@@ -388,7 +387,6 @@ void			*xmalloc(size_t);
 void			*xcalloc(size_t, size_t);
 char			*xstrdup(const char *);
 
-void			 screen_init(void);
 struct screen_ctx	*screen_fromroot(Window);
 struct screen_ctx	*screen_current(void);
 void			 screen_updatestackingorder(void);