From: Guido van Rossum Date: Tue, 30 Oct 1990 13:32:39 +0000 (+0000) Subject: Added prototype for sortlist(). X-Git-Tag: v0.9.8~1135 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=14da5801040cca76c4b36bad113ccf740af53a88;p=thirdparty%2FPython%2Fcpython.git Added prototype for sortlist(). --- diff --git a/Include/listobject.h b/Include/listobject.h index 76cf86d0d9ef..5ff057eb1a83 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 *));