summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Schwindl <schwindl@posteo.de>2022-08-18 14:55:19 +0000
committerrafa_99 <raroma09@gmail.com>2022-08-19 17:16:06 +0100
commitc611d97081ef093331f6cce771e4568a38d9ad2f (patch)
tree8f95167f715be5783f2180209725feaf9a785fb1
parent1d7f8c444ff2b8d2cd4444d8644b204ab90379ec (diff)
st: use `void' to indicate an empty parameter list
-rw-r--r--st.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/st.c b/st.c
index e2d33be..5e6991a 100644
--- a/st.c
+++ b/st.c
@@ -946,7 +946,7 @@ ttyresize(int tw, int th)
}
void
-ttyhangup()
+ttyhangup(void)
{
/* Send SIGHUP to shell */
kill(pid, SIGHUP);