diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-11-11 13:37:28 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-11-11 13:37:28 (GMT) |
commit | bddf5a57ca94b93d251492b5adc50814e891e7f2 (patch) | |
tree | fb0b509d9eb4c44bd96ec4895bb7539fc54f188b /pyconfig.h.in | |
parent | e981a4eb3607f8b18acc1c715a6789f7aa7ac07c (diff) | |
download | cpython-bddf5a57ca94b93d251492b5adc50814e891e7f2.zip cpython-bddf5a57ca94b93d251492b5adc50814e891e7f2.tar.gz cpython-bddf5a57ca94b93d251492b5adc50814e891e7f2.tar.bz2 |
Protect pyconfig.h from multiple inclusions.
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index a8bede8..a6f7e83 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -1,5 +1,10 @@ /* pyconfig.h.in. Generated from configure.in by autoheader. */ + +#ifndef Py_PYCONFIG_H +#define Py_PYCONFIG_H + + /* Define for AIX if your compiler is a genuine IBM xlC/xlC_r and you want support for AIX C++ shared extension modules. */ #undef AIX_GENUINE_CPLUSPLUS @@ -852,3 +857,5 @@ #define STRICT_SYSV_CURSES /* Don't use ncurses extensions */ #endif +#endif /*Py_PYCONFIG_H*/ + |