Include modsupport.h for getargs().

This commit is contained in:
Guido van Rossum 1992-01-27 16:53:23 +00:00
parent 33894be657
commit fa3da8aa7c
2 changed files with 2 additions and 0 deletions

View 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)

View 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)