diff options
author | Thomas Heller <theller@ctypes.org> | 2008-06-05 17:29:38 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2008-06-05 17:29:38 (GMT) |
commit | 259a566ac5985eab14671621b2143a3be3ad4aef (patch) | |
tree | 4bf7eb5ed8efc5ce81839a95f81bada2f2c6306f | |
parent | 5640ce2f1edc0148ee14fd3daeb7ac700700bb71 (diff) | |
download | cpython-259a566ac5985eab14671621b2143a3be3ad4aef.zip cpython-259a566ac5985eab14671621b2143a3be3ad4aef.tar.gz cpython-259a566ac5985eab14671621b2143a3be3ad4aef.tar.bz2 |
Fix preprocessor statement.
-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 35a8bca..c875989 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 */ |