From: Geoff Thorpe Date: Wed, 11 Dec 2002 03:34:26 +0000 (+0000) Subject: This stops a compiler warning from -Wmissing-prototypes. X-Git-Tag: OpenSSL_0_9_7-beta6~18^2~16 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f92570f00a2db071dd5b99433fc2f3447ab85fd7;p=oweals%2Fopenssl.git This stops a compiler warning from -Wmissing-prototypes. (Noticed by Nils Larsch) --- diff --git a/apps/dsaparam.c b/apps/dsaparam.c index 7a3110136c..b6abe785ab 100644 --- a/apps/dsaparam.c +++ b/apps/dsaparam.c @@ -97,7 +97,7 @@ static int stop_keygen_flag = 0; -void timebomb_sigalarm(int foo) +static void timebomb_sigalarm(int foo) { stop_keygen_flag = 1; }