projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1f1c16a
)
Move #include to outside "extern C {}", before Tim figures out it'll break
author
Thomas Wouters
<thomas@python.org>
Tue, 28 Feb 2006 23:09:08 +0000
(23:09 +0000)
committer
Thomas Wouters
<thomas@python.org>
Tue, 28 Feb 2006 23:09:08 +0000
(23:09 +0000)
VC++.
Include/compile.h
patch
|
blob
|
history
diff --git
a/Include/compile.h
b/Include/compile.h
index 0cc228ce5c5d06835094ca693248ee3531ddf7cf..4ac69822a03dbb9bcf853d507538f64013049690 100644
(file)
--- 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 *);