summaryrefslogtreecommitdiffstats
path: root/Python/compile.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-04-14 17:55:09 (GMT)
committerGuido van Rossum <guido@python.org>2001-04-14 17:55:09 (GMT)
commitf68d8e52e7ce833d123de034a4f123ec710a639f (patch)
treefceec6ba2862506e6839a6b34579b635052360e9 /Python/compile.c
parentf85af612f8c109f52333ee2d106b0848bf6ab372 (diff)
downloadcpython-f68d8e52e7ce833d123de034a4f123ec710a639f.zip
cpython-f68d8e52e7ce833d123de034a4f123ec710a639f.tar.gz
cpython-f68d8e52e7ce833d123de034a4f123ec710a639f.tar.bz2
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 1fb85e7..0939f05 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)))