diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-06-28 22:52:18 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-06-28 22:52:18 (GMT) |
commit | 5afe30e07cf27abc032ed0bb73aa7fe429605beb (patch) | |
tree | 754e18764f582e4540e2d91a9ce58dac16d95c30 /Include | |
parent | 32123370f4051896a378df8d64b09adf81bd967a (diff) | |
download | cpython-5afe30e07cf27abc032ed0bb73aa7fe429605beb.zip cpython-5afe30e07cf27abc032ed0bb73aa7fe429605beb.tar.gz cpython-5afe30e07cf27abc032ed0bb73aa7fe429605beb.tar.bz2 |
Merged revisions 73661 via svnmerge from
svn+ssh://pythondev@www.python.org/python/branches/py3k
................
r73661 | mark.dickinson | 2009-06-28 23:40:48 +0100 (Sun, 28 Jun 2009) | 9 lines
Merged revisions 73660 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73660 | mark.dickinson | 2009-06-28 23:37:13 +0100 (Sun, 28 Jun 2009) | 1 line
Remove unused stdint.h includes
........
................
Diffstat (limited to 'Include')
-rw-r--r-- | Include/longintrepr.h | 4 | ||||
-rw-r--r-- | Include/pymath.h | 4 |
2 files changed, 0 insertions, 8 deletions
diff --git a/Include/longintrepr.h b/Include/longintrepr.h index dd0933a..7765172 100644 --- a/Include/longintrepr.h +++ b/Include/longintrepr.h @@ -40,10 +40,6 @@ extern "C" { platform. */ -#if HAVE_STDINT_H -#include <stdint.h> -#endif - #if PYLONG_BITS_IN_DIGIT == 30 #if !(defined HAVE_UINT64_T && defined HAVE_UINT32_T && \ defined HAVE_INT64_T && defined HAVE_INT32_T) diff --git a/Include/pymath.h b/Include/pymath.h index 816691a..dc2c427 100644 --- a/Include/pymath.h +++ b/Include/pymath.h @@ -3,10 +3,6 @@ #include "pyconfig.h" /* include for defines */ -#ifdef HAVE_STDINT_H -#include <stdint.h> -#endif - /************************************************************************** Symbols and macros to supply platform-independent interfaces to mathematical functions and constants |