summaryrefslogtreecommitdiff
path: root/test/testmmap.c
diff options
context:
space:
mode:
authorjorton <jorton@13f79535-47bb-0310-9956-ffa450edef68>2002-11-14 12:25:56 +0000
committerjorton <jorton@13f79535-47bb-0310-9956-ffa450edef68>2002-11-14 12:25:56 +0000
commitd299834ea5040d71f1199d1fe0cc35d8554415bf (patch)
tree33a2288b45edfe73ad56e2fc7c29c978c277d3e9 /test/testmmap.c
parent4bcf46146fbdc5ec066966a3b068770ee8e3ec30 (diff)
downloadlibapr-d299834ea5040d71f1199d1fe0cc35d8554415bf.tar.gz
Make global variables static where appropriate.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64023 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/testmmap.c')
-rw-r--r--test/testmmap.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/testmmap.c b/test/testmmap.c
index 7003552b5..3734def1a 100644
--- a/test/testmmap.c
+++ b/test/testmmap.c
@@ -73,10 +73,10 @@ static void not_implemented(CuTest *tc)
#else
-apr_mmap_t *themmap = NULL;
-apr_file_t *thefile = NULL;
-char *file1;
-apr_finfo_t finfo;
+static apr_mmap_t *themmap = NULL;
+static apr_file_t *thefile = NULL;
+static char *file1;
+static apr_finfo_t finfo;
static void create_filename(CuTest *tc)
{