summaryrefslogtreecommitdiffstats
path: root/Parser
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1993-11-01 16:28:59 (GMT)
committerGuido van Rossum <guido@python.org>1993-11-01 16:28:59 (GMT)
commitb73cc04e625511f41c63b880b418338af70dc8bd (patch)
tree63cf9aafbb16fd57f988e88f217c27660dc66197 /Parser
parentc7a22703e71f6074818e4661b0bbb57bbd726af7 (diff)
downloadcpython-b73cc04e625511f41c63b880b418338af70dc8bd.zip
cpython-b73cc04e625511f41c63b880b418338af70dc8bd.tar.gz
cpython-b73cc04e625511f41c63b880b418338af70dc8bd.tar.bz2
* ceval.c, longobject.c, methodobject.c, listnode.c, arraymodule.c,
pythonrun.c: added static forward declarations * pythonrun.h, ceval.h, longobject.h, node.h: removed declarations of static routines
Diffstat (limited to 'Parser')
-rw-r--r--Parser/listnode.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Parser/listnode.c b/Parser/listnode.c
index a914bab..d566e78 100644
--- a/Parser/listnode.c
+++ b/Parser/listnode.c
@@ -30,6 +30,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
/* Forward */
static void list1node PROTO((FILE *, node *));
+static void listnode PROTO((FILE *, node *));
void
listtree(n)