From 1a506e465c83a9316e4624bf92e643d8163c6856 Mon Sep 17 00:00:00 2001 From: johanknol Date: Sun, 17 Sep 2000 17:19:41 +0000 Subject: [PATCH] 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 --- device/lib/vprintf.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) 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; /****************************************************************************/ -- 2.47.2