diff options
author | Tom Schwindl <schwindl@posteo.de> | 2022-08-18 14:55:19 +0000 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2022-08-18 17:14:10 +0200 |
commit | 72fd32736a612edec43596c14148322122a5544d (patch) | |
tree | 53ebf40d2b92167adcddd86646b2ada0b4a0e644 | |
parent | baa9357e96d2478baa52a3301e70ac80a229b726 (diff) |
st: use `void' to indicate an empty parameter list
-rw-r--r-- | st.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -939,7 +939,7 @@ ttyresize(int tw, int th) } void -ttyhangup() +ttyhangup(void) { /* Send SIGHUP to shell */ kill(pid, SIGHUP); |