]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Include modsupport.h for getargs().
authorGuido van Rossum <guido@python.org>
Mon, 27 Jan 1992 16:53:23 +0000 (16:53 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 27 Jan 1992 16:53:23 +0000 (16:53 +0000)
Objects/fileobject.c
Objects/listobject.c

index db9a088eb1deda71ea65114c30cea75e48cd8653..e925b4d3244a7ea6c6f4dd12ee1cb6d5ff4463dc 100644 (file)
@@ -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)
 
index 5811f406e483d3860f0b308aec7fd0c7adc2ec3b..156cda1c2f4ef86674e853b3eb84fe53b6e3165d 100644 (file)
@@ -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)