about summary refs log tree commit diff
path: root/calmwm.c
diff options
context:
space:
mode:
authorokan <okan>2009-06-26 12:21:58 +0000
committerokan <okan>2009-06-26 12:21:58 +0000
commitf44862be9c4d3332d3f9ee9760e7014814eaeeb3 (patch)
treee4f8b3c240f5bfe6b496f10fd61cec1cc6b98954 /calmwm.c
parentb13d592c572bde4a2b2039e7ef30e501ac97a21a (diff)
downloadcwm-f44862be9c4d3332d3f9ee9760e7014814eaeeb3.tar.gz
cwm-f44862be9c4d3332d3f9ee9760e7014814eaeeb3.tar.xz
cwm-f44862be9c4d3332d3f9ee9760e7014814eaeeb3.zip
static local functions and data; almost identical diff from Thomas Pfaff
ok oga@
Diffstat (limited to 'calmwm.c')
-rw-r--r--calmwm.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/calmwm.c b/calmwm.c
index b87b1a6..b9d29d0 100644
--- a/calmwm.c
+++ b/calmwm.c
@@ -40,6 +40,7 @@ struct conf			 Conf;
 
 static void	sigchld_cb(int);
 static void	dpy_init(const char *);
+static int	x_errorhandler(Display *, XErrorEvent *);
 static void	x_setup(void);
 static void	x_setupscreen(struct screen_ctx *, u_int);
 static void	x_teardown(void);
@@ -89,7 +90,7 @@ main(int argc, char **argv)
 	return (0);
 }
 
-void
+static void
 dpy_init(const char *dpyname)
 {
 	int	i;
@@ -103,7 +104,7 @@ dpy_init(const char *dpyname)
 	HasRandr = XRRQueryExtension(X_Dpy, &Randr_ev, &i);
 }
 
-void
+static void
 x_setup(void)
 {
 	struct screen_ctx	*sc;
@@ -130,7 +131,7 @@ x_setup(void)
 	Cursor_question = XCreateFontCursor(X_Dpy, XC_question_arrow);
 }
 
-void
+static void
 x_teardown(void)
 {
 	struct screen_ctx	*sc;
@@ -141,7 +142,7 @@ x_teardown(void)
 	XCloseDisplay(X_Dpy);
 }
 
-void
+static void
 x_setupscreen(struct screen_ctx *sc, u_int which)
 {
 	Window			*wins, w0, w1;
@@ -200,11 +201,9 @@ x_setupscreen(struct screen_ctx *sc, u_int which)
 	screen_init_xinerama(sc);
 
 	XSync(X_Dpy, False);
-
-	return;
 }
 
-int
+static int
 x_errorhandler(Display *dpy, XErrorEvent *e)
 {
 #ifdef DEBUG