From 4ed1ad5355a2bef0b142bea5dbf22eea76ebc84f Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 4 Jun 1991 19:43:13 +0000 Subject: [PATCH] Export newcodeobject() interface. --- Include/compile.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Include/compile.h b/Include/compile.h index abd458cf438..740e34d02f7 100644 --- a/Include/compile.h +++ b/Include/compile.h @@ -46,3 +46,4 @@ extern typeobject Codetype; /* Public interface */ struct _node; /* Declare the existence of this type */ codeobject *compile PROTO((struct _node *, char *)); +codeobject *newcodeobject PROTO((object *, object *, object *, object *));