summaryrefslogtreecommitdiff
path: root/zwgc/mux.h
diff options
context:
space:
mode:
authorGravatar Karl Ramm <kcr@mit.edu>2008-01-21 03:11:44 +0000
committerGravatar Karl Ramm <kcr@mit.edu>2008-01-21 03:11:44 +0000
commitb6ea75cfc9712b77a0886c4348d6fb519641e40e (patch)
tree65f68bb2db7c6118e80670cd5edc297159f43409 /zwgc/mux.h
parent71f70d3066d1c038e1794c4ffe804591eda3d1af (diff)
de K&Rify, fix prototypes
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