blob: ed376098e8baff2e5e896ad1013fff268bb965a4 [file] [log] [blame]
Guido van Rossum3f5da241990-12-20 15:06:42 +00001/* "allobjects.c" -- Source for precompiled header "allobjects.h" */
2
3#include <stdio.h>
4#include "string.h"
5
6#include "PROTO.h"
7
8#include "object.h"
9#include "objimpl.h"
10
11#include "intobject.h"
12#include "floatobject.h"
13#include "stringobject.h"
14#include "tupleobject.h"
15#include "listobject.h"
16#include "dictobject.h"
17#include "methodobject.h"
18#include "moduleobject.h"
19#include "funcobject.h"
20#include "classobject.h"
21#include "fileobject.h"
22
23#include "errors.h"
24#include "malloc.h"
25
26extern char *strdup PROTO((const char *));