From: Guido van Rossum Date: Mon, 27 Jan 1992 16:53:23 +0000 (+0000) Subject: Include modsupport.h for getargs(). X-Git-Tag: v0.9.8~538 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa3da8aa7c1aee0af904b96ee2a39e38152278dd;p=thirdparty%2FPython%2Fcpython.git Include modsupport.h for getargs(). --- diff --git a/Objects/fileobject.c b/Objects/fileobject.c index db9a088eb1de..e925b4d3244a 100644 --- a/Objects/fileobject.c +++ b/Objects/fileobject.c @@ -25,6 +25,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. /* File object implementation */ #include "allobjects.h" +#include "modsupport.h" #define BUF(v) GETSTRINGVALUE((stringobject *)v) diff --git a/Objects/listobject.c b/Objects/listobject.c index 5811f406e483..156cda1c2f4e 100644 --- a/Objects/listobject.c +++ b/Objects/listobject.c @@ -25,6 +25,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. /* List object implementation */ #include "allobjects.h" +#include "modsupport.h" object * newlistobject(size)