From: johanknol Date: Sun, 17 Sep 2000 17:19:41 +0000 (+0000) Subject: changed some local var's to static X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=1a506e465c83a9316e4624bf92e643d8163c6856;p=fw%2Fsdcc changed some local var's to static git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@373 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/device/lib/vprintf.c b/device/lib/vprintf.c index 12eadb58..57a775ad 100644 --- a/device/lib/vprintf.c +++ b/device/lib/vprintf.c @@ -54,14 +54,15 @@ typedef union static code char memory_id[] = "IXCP-"; -ptr_t output_ptr; -bit output_to_string; -bit lower_case; -bit lsd; +static ptr_t output_ptr; +static bit output_to_string; +static bit lower_case; +static bit lsd; -data value_t value; +/* this one NEEDS to be in data */ +static data value_t value; -unsigned short radix; +static xdata unsigned short radix; /****************************************************************************/