unix/fiss

add static to function (e59b3b8ee0a6cbbe0b416e242515d11a19ee81a5)
Repositories | LICENSE

commit e59b3b8ee0a6cbbe0b416e242515d11a19ee81a5
parent b5261e475dfdc8521ef7dee6db8eaa477c56f6fa
Author: Friedel Schön <[email protected]>
Date:   Thu, 25 May 2023 15:06:12 +0200

add static to function

Diffstat:
Msrc/exec/finit.c7+++----
1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/src/exec/finit.c b/src/exec/finit.c @@ -13,7 +13,9 @@ #include <unistd.h> -int handle_initctl(int argc, const char** argv) { +static bool do_reboot; + +static int handle_initctl(int argc, const char** argv) { int sig; if (argc != 2 || argv[1][1] != '\0' || (argv[1][0] != '0' && argv[1][0] != '6')) { @@ -31,9 +33,6 @@ int handle_initctl(int argc, const char** argv) { return 0; } - -static bool do_reboot; - static void signal_interrupt(int signum) { daemon_running = false; do_reboot = signum == SIGINT;