From: Neal Norwitz Date: Sun, 13 Nov 2005 01:08:38 +0000 (+0000) Subject: make internal method static X-Git-Tag: v2.5a0~1174 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2744c6cc356d6495cb1bae3ed165e2f5b7d6e7ec;p=thirdparty%2FPython%2Fcpython.git make internal method static --- diff --git a/Python/compile.c b/Python/compile.c index 5195f5651f1e..4649d32054f3 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -3625,7 +3625,7 @@ dfs(struct compiler *c, basicblock *b, struct assembler *a) a->a_postorder[a->a_nblocks++] = b; } -int +static int stackdepth_walk(struct compiler *c, basicblock *b, int depth, int maxdepth) { int i;