From: Thomas Wouters Date: Tue, 28 Feb 2006 23:09:08 +0000 (+0000) Subject: Move #include to outside "extern C {}", before Tim figures out it'll break X-Git-Tag: v2.5a0~458 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ca82a8b7604ba0ace261a75eb204d9fab765cdbf;p=thirdparty%2FPython%2Fcpython.git Move #include to outside "extern C {}", before Tim figures out it'll break VC++. --- diff --git a/Include/compile.h b/Include/compile.h index 0cc228ce5c5d..4ac69822a03d 100644 --- a/Include/compile.h +++ b/Include/compile.h @@ -1,12 +1,13 @@ #ifndef Py_COMPILE_H #define Py_COMPILE_H + +#include "code.h" + #ifdef __cplusplus extern "C" { #endif -#include "code.h" - /* Public interface */ struct _node; /* Declare the existence of this type */ PyAPI_FUNC(PyCodeObject *) PyNode_Compile(struct _node *, const char *);