>From 45c6d36a069e7fe12cd5b13a3b7018171d2fbf5a Mon Sep 17 00:00:00 2001 From: Alexander Cherepanov Date: Sat, 11 May 2013 18:15:07 +0400 Subject: [PATCH 3/5] Make itoa64 in common.c static. --- src/common.c | 2 +- src/common.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common.c b/src/common.c index 0815ec5..721dfcf 100644 --- a/src/common.c +++ b/src/common.c @@ -8,7 +8,7 @@ #include "arch.h" #include "common.h" -char itoa64[64] = +static char itoa64[64] = "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; char atoi64[0x100]; diff --git a/src/common.h b/src/common.h index a29e228..df46fe8 100644 --- a/src/common.h +++ b/src/common.h @@ -51,7 +51,7 @@ typedef unsigned int ARCH_WORD_32; /* * ASCII <-> binary conversion tables. */ -extern char itoa64[64], atoi64[0x100]; +extern char atoi64[0x100]; extern char itoa16[16], atoi16[0x100]; /* -- 1.7.2.5