From c64576dc57e97f1827c48728e99f157757984a19 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sat, 14 Apr 2001 17:55:09 +0000 Subject: Make some private symbols static. --- Python/compile.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Python/compile.c') 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))) -- cgit v1.2.1