summaryrefslogtreecommitdiffstats
path: root/Objects/fileobject.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-01-27 16:53:23 (GMT)
committerGuido van Rossum <guido@python.org>1992-01-27 16:53:23 (GMT)
commitfa3da8aa7c1aee0af904b96ee2a39e38152278dd (patch)
tree5b5233a031d4c027ca438aa97403973a844b1e9f /Objects/fileobject.c
parent33894be6572e1f205359947db8a1025a21f15788 (diff)
downloadcpython-fa3da8aa7c1aee0af904b96ee2a39e38152278dd.zip
cpython-fa3da8aa7c1aee0af904b96ee2a39e38152278dd.tar.gz
cpython-fa3da8aa7c1aee0af904b96ee2a39e38152278dd.tar.bz2
Include modsupport.h for getargs().
Diffstat (limited to 'Objects/fileobject.c')
-rw-r--r--Objects/fileobject.c1
1 files changed, 1 insertions, 0 deletions
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)