summaryrefslogtreecommitdiff
path: root/bits_test.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2005-07-19 15:56:57 +0000
committerEric S. Raymond <esr@thyrsus.com>2005-07-19 15:56:57 +0000
commit0ade5ab3e40e0ecee67c85ebe129f77582149285 (patch)
treed4144c96d0a5ca8c03d5a8d0b22c6e89fa783f31 /bits_test.c
parent976bba0b99600a42a58a134aeb98c0023877926e (diff)
downloadgpsd-0ade5ab3e40e0ecee67c85ebe129f77582149285.tar.gz
Add progress messages to gpsflash. splint cleanup.
Diffstat (limited to 'bits_test.c')
-rw-r--r--bits_test.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/bits_test.c b/bits_test.c
index fd07a903..19d05ada 100644
--- a/bits_test.c
+++ b/bits_test.c
@@ -5,22 +5,22 @@
#include <string.h>
#include "bits.h"
+/*@ -duplicatequals -formattype */
typedef unsigned long long ubig;
-unsigned char buf[80];
-union int_float i_f;
-union long_double l_d;
-char sb1,sb2;
-unsigned char ub1,ub2;
-short sw1,sw2;
-unsigned short uw1,uw2;
-int sl1,sl2;
-unsigned int ul1,ul2;
-long long sL1,sL2;
-unsigned long long uL1,uL2;
-float f1;
-double d1;
-
+static unsigned char buf[80];
+static union int_float i_f;
+static union long_double l_d;
+static char sb1,sb2;
+static unsigned char ub1,ub2;
+static short sw1,sw2;
+static unsigned short uw1,uw2;
+static int sl1,sl2;
+static unsigned int ul1,ul2;
+static long long sL1,sL2;
+static unsigned long long uL1,uL2;
+static float f1;
+static double d1;
static void dumpall(void)
{