From: Yann Collet Date: Mon, 2 Oct 2017 18:39:05 +0000 (-0700) Subject: interruption handler and variable are static X-Git-Tag: v1.3.2~3^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7f580f9ee8b19fd29bc07a247b2d438f970072e7;p=thirdparty%2Fzstd.git interruption handler and variable are static --- diff --git a/programs/fileio.c b/programs/fileio.c index dafc12468..8d6ab35d0 100644 --- a/programs/fileio.c +++ b/programs/fileio.c @@ -145,8 +145,8 @@ static clock_t g_time = 0; **************************************/ #include -const char* g_artefact = NULL; -void INThandler(int sig) +static const char* g_artefact = NULL; +static void INThandler(int sig) { assert(sig==SIGINT); (void)sig; #if !defined(_MSC_VER)