diff options
author | Guido van Rossum <guido@python.org> | 1997-04-29 21:03:06 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-04-29 21:03:06 (GMT) |
commit | 86bea46b3d16c4ed0453e17f241ddbdfade76c98 (patch) | |
tree | e1664ff0e1ed1d40996b44aa9c7ade227fcc2c55 /Parser/listnode.c | |
parent | 2b713b2f675f762ac8ce6cd3a934de34659a2476 (diff) | |
download | cpython-86bea46b3d16c4ed0453e17f241ddbdfade76c98.zip cpython-86bea46b3d16c4ed0453e17f241ddbdfade76c98.tar.gz cpython-86bea46b3d16c4ed0453e17f241ddbdfade76c98.tar.bz2 |
Another directory quickly renamed.
Diffstat (limited to 'Parser/listnode.c')
-rw-r--r-- | Parser/listnode.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Parser/listnode.c b/Parser/listnode.c index 8e5d8ee..9895fd3 100644 --- a/Parser/listnode.c +++ b/Parser/listnode.c @@ -36,11 +36,11 @@ PERFORMANCE OF THIS SOFTWARE. #include "node.h" /* Forward */ -static void list1node PROTO((FILE *, node *)); -static void listnode PROTO((FILE *, node *)); +static void list1node Py_PROTO((FILE *, node *)); +static void listnode Py_PROTO((FILE *, node *)); void -listtree(n) +PyNode_ListTree(n) node *n; { listnode(stdout, n); |