diff options
author | Thomas Heller <theller@ctypes.org> | 2008-06-05 17:29:38 +0000 |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2008-06-05 17:29:38 +0000 |
commit | 2d83622aa6ecbe50d9ebb7ff8386ab5dee04797f (patch) | |
tree | 057ee07a11ffeffeeca6c430398fe1dc2451e03a /Include | |
parent | 444d761ce64dc9d79b193cb68e11f44b5857e1ed (diff) | |
download | cpython-2d83622aa6ecbe50d9ebb7ff8386ab5dee04797f.tar.gz |
Fix preprocessor statement.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/Python.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Include/Python.h b/Include/Python.h index 35a8bca83c..c87598950f 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -1,4 +1,5 @@ -#ifndef Py_PYTHON_H #define Py_PYTHON_H +#ifndef Py_PYTHON_H +#define Py_PYTHON_H /* Since this is a "meta-include" file, no #ifdef __cplusplus / extern "C" { */ /* Include nearly all Python header files */ |