diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2008-06-11 18:00:52 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2008-06-11 18:00:52 (GMT) |
commit | fe22a456d5161960ad2c7b448bc406680378af2e (patch) | |
tree | 775fc52e982817e1368ceba735709936b122b4b7 /Include | |
parent | 81567d2b612e79728d220666ae053cc0057a42e5 (diff) | |
download | cpython-fe22a456d5161960ad2c7b448bc406680378af2e.zip cpython-fe22a456d5161960ad2c7b448bc406680378af2e.tar.gz cpython-fe22a456d5161960ad2c7b448bc406680378af2e.tar.bz2 |
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.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/Python.h b/Include/Python.h index c875989..1a05116 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 |