From: Thomas Wouters Date: Tue, 28 Feb 2006 22:40:55 +0000 (+0000) Subject: Include code.h more sanely. X-Git-Tag: v2.5a0~463 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e4d3a72ab83c0f3d846b3bba129949f0a1dcbcdf;p=thirdparty%2FPython%2Fcpython.git Include code.h more sanely. --- diff --git a/Include/compile.h b/Include/compile.h index 01ba25c6e02e..0cc228ce5c5d 100644 --- a/Include/compile.h +++ b/Include/compile.h @@ -1,6 +1,3 @@ -#ifndef Py_CODE_H -#include "code.h" -#endif #ifndef Py_COMPILE_H #define Py_COMPILE_H @@ -8,6 +5,8 @@ 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 *);