]> granicus.if.org Git - python/commitdiff
Move #include to outside "extern C {}", before Tim figures out it'll break
authorThomas Wouters <thomas@python.org>
Tue, 28 Feb 2006 23:09:08 +0000 (23:09 +0000)
committerThomas Wouters <thomas@python.org>
Tue, 28 Feb 2006 23:09:08 +0000 (23:09 +0000)
VC++.

Include/compile.h

index 0cc228ce5c5d06835094ca693248ee3531ddf7cf..4ac69822a03dbb9bcf853d507538f64013049690 100644 (file)
@@ -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 *);