From 6576bd844fb49b37ebbfc6d7567bcd495ddbdbae Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Sun, 13 Nov 2005 18:41:28 +0000 Subject: Prevent name pollution by making lots of internal functions static. --- Python/future.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/future.c') diff --git a/Python/future.c b/Python/future.c index a0cfeac63a..2f593ac731 100644 --- a/Python/future.c +++ b/Python/future.c @@ -46,7 +46,7 @@ future_check_features(PyFutureFeatures *ff, stmt_ty s, const char *filename) return 1; } -int +static int future_parse(PyFutureFeatures *ff, mod_ty mod, const char *filename) { int i, found_docstring = 0, done = 0, prev_line = 0; -- cgit v1.2.1