From: Guido van Rossum Date: Fri, 16 Aug 1991 08:55:53 +0000 (+0000) Subject: Change getbuiltin interface to get the name as an object. X-Git-Tag: v0.9.8~850 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4f4a55b90c99d1d55ea850a5f24435c010e43e0e;p=thirdparty%2FPython%2Fcpython.git Change getbuiltin interface to get the name as an object. --- diff --git a/Include/bltinmodule.h b/Include/bltinmodule.h index 41c11cc310e5..9ef706566cc9 100644 --- a/Include/bltinmodule.h +++ b/Include/bltinmodule.h @@ -24,4 +24,4 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. /* Built-in module interface */ -extern object *getbuiltin PROTO((char *)); +extern object *getbuiltin PROTO((object *));