Make some private symbols static.

This commit is contained in:
Guido van Rossum 2001-04-14 17:55:09 +00:00
parent f85af612f8
commit f68d8e52e7
5 changed files with 8 additions and 7 deletions

View file

@ -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)))