diff --git a/lprocess.c b/lprocess.c index 9c5fc3c..94325ce 100644 --- a/lprocess.c +++ b/lprocess.c @@ -23,6 +23,7 @@ #define PROCESS_MAX 256 /* clang-format off */ + static const int signals[] = { SIGHUP, SIGINT, @@ -76,6 +77,7 @@ static const int signals[] = { SIGUSR2, -1 /* end */ }; + static const char *sigstrs[] = { [SIGHUP] = "SIGHUP", [SIGINT] = "SIGINT", @@ -129,6 +131,8 @@ static const char *sigstrs[] = { [SIGUSR2] = "SIGUSR2" }; +/* clang-format on */ + /*** * Returns the PID of the current process. *