diff options
author | Tom Schwindl <schwindl@posteo.de> | 2022-08-18 14:55:19 +0000 |
---|---|---|
committer | sinanmohd <pcmsinan@gmail.com> | 2023-01-12 08:21:56 +0530 |
commit | be02bbb009f45c2118c6cf1f24713210a540e376 (patch) | |
tree | a436a1e6a7cab32d98c5141918ca47621ad5a9de | |
parent | eb849502e755d8faf154db6ca3ad5498f6c99f62 (diff) |
st: use `void' to indicate an empty parameter list
-rw-r--r-- | st.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -949,7 +949,7 @@ ttyresize(int tw, int th) } void -ttyhangup() +ttyhangup(void) { /* Send SIGHUP to shell */ kill(pid, SIGHUP); |