From fa3da8aa7c1aee0af904b96ee2a39e38152278dd Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 27 Jan 1992 16:53:23 +0000 Subject: Include modsupport.h for getargs(). --- Objects/fileobject.c | 1 + Objects/listobject.c | 1 + 2 files changed, 2 insertions(+) diff --git a/Objects/fileobject.c b/Objects/fileobject.c index db9a088..e925b4d 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 5811f40..156cda1 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) -- cgit v0.12