aboutsummaryrefslogtreecommitdiff
path: root/src/pipe.h
diff options
context:
space:
mode:
authoriamcheeseman <[hidden email]>2026-03-01 11:10:54 -0500
committeriamcheeseman <[hidden email]>2026-03-01 11:10:54 -0500
commit998cb175da5fc8b95151f4e632e3024791e3196d (patch)
tree3a08682b9b6840f85ed6466efd6bc39369f396da /src/pipe.h
parent6d17f1ca1f4e2c85e8aed05e6902196f1274cf87 (diff)
bring code up to standards
Diffstat (limited to 'src/pipe.h')
-rw-r--r--src/pipe.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pipe.h b/src/pipe.h
index e0e6301..233abf4 100644
--- a/src/pipe.h
+++ b/src/pipe.h
@@ -6,8 +6,8 @@
#define MAX_ARG_LEN 128
#define MAX_ARGS 16
-void init_pipe();
-void await_change();
+void init_pipe(void);
+void await_change(void);
void make_change(char[MAX_ARGS][MAX_ARG_LEN], int);
#endif