From: Tollef Fog Heen Date: Mon, 2 Feb 2009 07:11:44 +0000 (+0100) Subject: Make a couple of variables file-local X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=HEAD;p=temper Make a couple of variables file-local --- diff --git a/TEMPer.c b/TEMPer.c index 2cdeb74..eafc083 100644 --- a/TEMPer.c +++ b/TEMPer.c @@ -16,10 +16,10 @@ #define FALSE 0 #define TRUE 1 -volatile int STOP=FALSE; +static volatile int STOP = FALSE; -char m_CHic; -int fd; +static char m_CHic; +static int fd; void Delay(int msec) { usleep(10 * msec);