diff options
| author | Dan Cross <cross@gajendra.net> | 2025-07-25 11:37:39 -0400 |
|---|---|---|
| committer | Dan Cross <cross@gajendra.net> | 2025-07-25 11:58:36 -0400 |
| commit | 1e6e30e91e7a2712d9507072b5ff3b59a73e5dfe (patch) | |
| tree | 4cbeff84fe7c087b3ed2171acd55e66593b684d9 /src/cmd/rio/main.c | |
| parent | 655f7c3184fe2f1eb039211e689c2fe037fa8320 (diff) | |
| download | plan9port-1e6e30e91e7a2712d9507072b5ff3b59a73e5dfe.tar.gz plan9port-1e6e30e91e7a2712d9507072b5ff3b59a73e5dfe.zip | |
rio: proper prototypes in `fns.h`
Use proper function prototypes in `fns.h`, that include argument
type information.
Diffstat (limited to 'src/cmd/rio/main.c')
| -rw-r--r-- | src/cmd/rio/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cmd/rio/main.c b/src/cmd/rio/main.c index 09c1316e..acb5391e 100644 --- a/src/cmd/rio/main.c +++ b/src/cmd/rio/main.c @@ -471,8 +471,9 @@ sendconfig(Client *c) } void -sighandler(void) +sighandler(int _signo) { + (void)_signo; signalled = 1; } |
