#include "intobject.h"
#include "longobject.h"
#include "floatobject.h"
+#ifndef WITHOUT_COMPLEX
+#include "complexobject.h"
+#endif
#include "rangeobject.h"
#include "stringobject.h"
#include "tupleobject.h"
#include "funcobject.h"
#include "classobject.h"
#include "fileobject.h"
+#include "cobject.h"
#include "errors.h"
#include "mymalloc.h"
#include "abstract.h"
-extern void Py_FatalError Py_PROTO((char *));
-
#define PyArg_GetInt(v, a) PyArg_Parse((v), "i", (a))
#define PyArg_NoArgs(v) PyArg_Parse(v, "")