aboutsummaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
authorTom Schwindl <schwindl@posteo.de>2022-08-18 14:55:19 +0000
committersinanmohd <pcmsinan@gmail.com>2023-01-12 08:21:56 +0530
commitbe02bbb009f45c2118c6cf1f24713210a540e376 (patch)
treea436a1e6a7cab32d98c5141918ca47621ad5a9de /st.c
parenteb849502e755d8faf154db6ca3ad5498f6c99f62 (diff)
st: use `void' to indicate an empty parameter list
Diffstat (limited to 'st.c')
-rw-r--r--st.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/st.c b/st.c
index 6a153ab..b887ed5 100644
--- a/st.c
+++ b/st.c
@@ -949,7 +949,7 @@ ttyresize(int tw, int th)
}
void
-ttyhangup()
+ttyhangup(void)
{
/* Send SIGHUP to shell */
kill(pid, SIGHUP);