diff options
author | Guido van Rossum <guido@python.org> | 1995-01-17 16:13:48 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-17 16:13:48 (GMT) |
commit | cd938fc5a1ba4a61959460787eb549ff989ca6b0 (patch) | |
tree | bdacb1f3ba568d3095e414dc4d02732a02c7c9c3 /Modules/parsermodule.c | |
parent | 78c0535a224697e1c7a1a4e68462d3d204e38942 (diff) | |
download | cpython-cd938fc5a1ba4a61959460787eb549ff989ca6b0.zip cpython-cd938fc5a1ba4a61959460787eb549ff989ca6b0.tar.gz cpython-cd938fc5a1ba4a61959460787eb549ff989ca6b0.tar.bz2 |
Made some more things static, and other cleanup for new naming scheme
Diffstat (limited to 'Modules/parsermodule.c')
-rw-r--r-- | Modules/parsermodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c index 0d95bcc..1d2fe13 100644 --- a/Modules/parsermodule.c +++ b/Modules/parsermodule.c @@ -31,7 +31,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include "graminit.h" #include "errcode.h" -object * +static object * node2tuple(n) node *n; { |