diff options
author | Guido van Rossum <guido@python.org> | 2000-08-01 18:28:44 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-08-01 18:28:44 (GMT) |
commit | 367e46a9432c2dd0c11e74526fd26b10ef57dad7 (patch) | |
tree | 1be5c4f5694988c5ad3b4fcb6ae4fed034428ec5 /Include | |
parent | 29c4ba9ada44d62988c62c85c8046985f10a1c85 (diff) | |
download | cpython-367e46a9432c2dd0c11e74526fd26b10ef57dad7.zip cpython-367e46a9432c2dd0c11e74526fd26b10ef57dad7.tar.gz cpython-367e46a9432c2dd0c11e74526fd26b10ef57dad7.tar.bz2 |
Of course, you meant "#if 0" and not "#ifdef 0". :)
Diffstat (limited to 'Include')
-rw-r--r-- | Include/pyport.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/pyport.h b/Include/pyport.h index dceb98d..c682680 100644 --- a/Include/pyport.h +++ b/Include/pyport.h @@ -281,7 +281,7 @@ extern double hypot(double, double); /* If the fd manipulation macros aren't defined, here is a set that should do the job */ -#ifdef 0 /* disabled and probably obsolete */ +#if 0 /* disabled and probably obsolete */ #ifndef FD_SETSIZE #define FD_SETSIZE 256 |