summaryrefslogtreecommitdiff
path: root/zwgc/mux.h
diff options
context:
space:
mode:
Diffstat (limited to 'zwgc/mux.h')
-rw-r--r--zwgc/mux.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/zwgc/mux.h b/zwgc/mux.h
index 3654a3f..230f9df 100644
--- a/zwgc/mux.h
+++ b/zwgc/mux.h
@@ -38,7 +38,7 @@ extern int mux_end_loop_p;
* any other mux call.
*/
-extern void mux_init();
+extern void mux_init(void);
/*
* void mux_add_input_source(int descriptior; void (*handler)(); void *arg)
@@ -50,7 +50,7 @@ extern void mux_init();
* argument arg.
*/
-extern void mux_add_input_source();
+extern void mux_add_input_source(int, void (*)(void *), void *);
/*
* void mux_loop()
@@ -67,6 +67,6 @@ extern void mux_add_input_source();
* true, we return.
*/
-extern void mux_loop();
+extern void mux_loop(void);
#endif