summaryrefslogtreecommitdiffstats
path: root/tests/helpers/test_byteswap.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/helpers/test_byteswap.c')
-rw-r--r--tests/helpers/test_byteswap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/helpers/test_byteswap.c b/tests/helpers/test_byteswap.c
index 0b996e09b..1b98f7697 100644
--- a/tests/helpers/test_byteswap.c
+++ b/tests/helpers/test_byteswap.c
@@ -19,7 +19,7 @@
#include "bitops.h"
-uint16_t ary16[] = {
+static uint16_t ary16[] = {
0x0001, 0x0100,
0x1234, 0x3412,
0xff00, 0x00ff,
@@ -28,7 +28,7 @@ uint16_t ary16[] = {
0x0000, 0x0000
};
-uint32_t ary32[] = {
+static uint32_t ary32[] = {
0x00000001, 0x01000000,
0x80000000, 0x00000080,
0x12345678, 0x78563412,
@@ -38,7 +38,7 @@ uint32_t ary32[] = {
0x00000000, 0x00000000
};
-uint64_t ary64[] = {
+static uint64_t ary64[] = {
0x0000000000000001, 0x0100000000000000,
0x8000000000000000, 0x0000000000000080,
0x1234567812345678, 0x7856341278563412,