aboutsummaryrefslogtreecommitdiffhomepage
path: root/intern.c
diff options
context:
space:
mode:
Diffstat (limited to 'intern.c')
-rw-r--r--intern.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/intern.c b/intern.c
index e1dd7290..636b7029 100644
--- a/intern.c
+++ b/intern.c
@@ -15,8 +15,15 @@
#include "common.h"
#include "intern.h"
-hash_table_t *intern_table=0;
-hash_table_t *intern_static_table=0;
+/**
+ Table of interned strings
+*/
+static hash_table_t *intern_table=0;
+
+/**
+ Table of static interned strings
+*/
+static hash_table_t *intern_static_table=0;
/**
Load static strings that are universally common. Currently only loads the empty string.