tMake sighandler() static - sacc - sacc (saccomys): simple gopher client. | |
Log | |
Files | |
Refs | |
LICENSE | |
--- | |
commit aa35a9899f7ce8e67a4801ff131d0cf96f7dc37c | |
parent 031f781dfa1e657a9c9eb6677d78de4d82c455b1 | |
Author: Quentin Rameau | |
Date: Sat, 10 Apr 2021 18:06:10 +0200 Make sighandler() static Diffstat: M sacc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- | |
diff --git a/sacc.c b/sacc.c | |
t@@ -978,7 +978,7 @@ cleanup(void) uicleanup(); } -void +static void sighandler(int signo) { exit(128 + signo); |