summaryrefslogtreecommitdiff
path: root/Include
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2008-06-11 18:00:52 +0000
committerGregory P. Smith <greg@mad-scientist.com>2008-06-11 18:00:52 +0000
commit463d0795d3370650cb477f490e49d513b25b1a08 (patch)
tree21524508469cdf2156140aab632d28ded1284da6 /Include
parentd013afffe62667457848d4b9d0334fd4df35555e (diff)
downloadcpython-463d0795d3370650cb477f490e49d513b25b1a08.tar.gz
Correct an incorrect comment about our #include of stddef.h.
(see Doug Evans' comment on python-dev 2008-06-10)
Diffstat (limited to 'Include')
-rw-r--r--Include/Python.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/Python.h b/Include/Python.h
index c87598950f..1a05116235 100644
--- a/Include/Python.h
+++ b/Include/Python.h
@@ -44,7 +44,7 @@
#include <unistd.h>
#endif
-/* For uintptr_t, intptr_t */
+/* For size_t? */
#ifdef HAVE_STDDEF_H
#include <stddef.h>
#endif