From 5dca1abfa39158784cd7c40684835b33e377daec Mon Sep 17 00:00:00 2001 From: Tollef Fog Heen Date: Mon, 2 Feb 2009 08:11:44 +0100 Subject: [PATCH] Make a couple of variables file-local --- TEMPer.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); -- 2.39.5