summaryrefslogtreecommitdiffstats
path: root/Include/listobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1990-10-30 13:32:39 (GMT)
committerGuido van Rossum <guido@python.org>1990-10-30 13:32:39 (GMT)
commit14da5801040cca76c4b36bad113ccf740af53a88 (patch)
treec450269a55dcbf7e14116d14569eff7bca74e38e /Include/listobject.h
parent84c76f52afdd0c6a85ba386327bdbbdf93449f87 (diff)
downloadcpython-14da5801040cca76c4b36bad113ccf740af53a88.zip
cpython-14da5801040cca76c4b36bad113ccf740af53a88.tar.gz
cpython-14da5801040cca76c4b36bad113ccf740af53a88.tar.bz2
Added prototype for sortlist().
Diffstat (limited to 'Include/listobject.h')
-rw-r--r--Include/listobject.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/listobject.h b/Include/listobject.h
index 76cf86d..5ff057e 100644
--- a/Include/listobject.h
+++ b/Include/listobject.h
@@ -24,3 +24,4 @@ extern object *getlistitem PROTO((object *, int));
extern int setlistitem PROTO((object *, int, object *));
extern int inslistitem PROTO((object *, int, object *));
extern int addlistitem PROTO((object *, object *));
+extern int sortlist PROTO((object *));