summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorMichael W. Hudson <mwh@python.net>2005-04-06 13:05:18 (GMT)
committerMichael W. Hudson <mwh@python.net>2005-04-06 13:05:18 (GMT)
commit9ef852c6c2c4e6a6f98779bf08bf3938aea77e4c (patch)
tree7dd08fdaa3622f3cad007967418b38c160a3de25 /Modules
parent2ea3072805a23225736c4efdb3a4943d9cafbf63 (diff)
downloadcpython-9ef852c6c2c4e6a6f98779bf08bf3938aea77e4c.zip
cpython-9ef852c6c2c4e6a6f98779bf08bf3938aea77e4c.tar.gz
cpython-9ef852c6c2c4e6a6f98779bf08bf3938aea77e4c.tar.bz2
Make that a C, not a C++, comment.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/mathmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c
index 4c678a83..a5fec15 100644
--- a/Modules/mathmodule.c
+++ b/Modules/mathmodule.c
@@ -1,7 +1,7 @@
/* Math module -- standard C math library functions, pi and e */
#include "Python.h"
-#include "longintrepr.h" // just for SHIFT
+#include "longintrepr.h" /* just for SHIFT */
#ifndef _MSC_VER
#ifndef __STDC__