summaryrefslogtreecommitdiff
path: root/Python/compile.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-04-14 17:55:09 +0000
committerGuido van Rossum <guido@python.org>2001-04-14 17:55:09 +0000
commitc64576dc57e97f1827c48728e99f157757984a19 (patch)
tree446e5c94e1d53f2151e52f5a68b2a1f8d80395bb /Python/compile.c
parente51c0787f7bf19dd6b95f4e2ec40ccc322463c34 (diff)
downloadcpython-c64576dc57e97f1827c48728e99f157757984a19.tar.gz
Make some private symbols static.
Diffstat (limited to 'Python/compile.c')
-rw-r--r--Python/compile.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c
index 1fb85e752e..0939f059c4 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -374,7 +374,8 @@ struct compiling {
PyFutureFeatures *c_future; /* pointer to module's __future__ */
};
-int is_free(int v)
+static int
+is_free(int v)
{
if ((v & (USE | DEF_FREE))
&& !(v & (DEF_LOCAL | DEF_PARAM | DEF_GLOBAL)))