From ab5a037d66b970fd4c7d7bb67495c38e38664da0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lorenz=20K=C3=A4stle?= <12514511+RincewindsHat@users.noreply.github.com> Date: Thu, 31 Oct 2024 14:19:05 +0100 Subject: negate: do not export local variables diff --git a/plugins/negate.c b/plugins/negate.c index e8f7c01..82a5548 100644 --- a/plugins/negate.c +++ b/plugins/negate.c @@ -44,10 +44,10 @@ const char *email = "devel@monitoring-plugins.org"; /* char *command_line; */ static const char **process_arguments(int, char **); -void validate_arguments(char **); -void print_help(void); +static void validate_arguments(char **); +static void print_help(void); void print_usage(void); -bool subst_text = false; +static bool subst_text = false; static int state[4] = { STATE_OK, -- cgit v0.10-9-g596f