[Python-checkins] r73660 - in python/trunk/Include: longintrepr.h pymath.h

mark.dickinson python-checkins at python.org
Mon Jun 29 00:37:13 CEST 2009


Author: mark.dickinson
Date: Mon Jun 29 00:37:13 2009
New Revision: 73660

Log:
Remove unused stdint.h includes

Modified:
   python/trunk/Include/longintrepr.h
   python/trunk/Include/pymath.h

Modified: python/trunk/Include/longintrepr.h
==============================================================================
--- python/trunk/Include/longintrepr.h	(original)
+++ python/trunk/Include/longintrepr.h	Mon Jun 29 00:37:13 2009
@@ -37,10 +37,6 @@
   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)

Modified: python/trunk/Include/pymath.h
==============================================================================
--- python/trunk/Include/pymath.h	(original)
+++ python/trunk/Include/pymath.h	Mon Jun 29 00:37:13 2009
@@ -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


More information about the Python-checkins mailing list