diff options
author | Peter Schneider-Kamp <nowonder@nowonder.de> | 2000-08-01 16:53:44 (GMT) |
---|---|---|
committer | Peter Schneider-Kamp <nowonder@nowonder.de> | 2000-08-01 16:53:44 (GMT) |
commit | 1c2b178cebfe45bb832a33a8a87c9899365d0b4f (patch) | |
tree | 19146ca30f01850c25c530b804d86a6549bed20f | |
parent | 7cee6ddcab1e62f1ea29cb83d855865114b13e08 (diff) | |
download | cpython-1c2b178cebfe45bb832a33a8a87c9899365d0b4f.zip cpython-1c2b178cebfe45bb832a33a8a87c9899365d0b4f.tar.gz cpython-1c2b178cebfe45bb832a33a8a87c9899365d0b4f.tar.bz2 |
Guido said this is food for the beta-testers<wink>
-rw-r--r-- | Include/pyport.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Include/pyport.h b/Include/pyport.h index f635703..dceb98d 100644 --- a/Include/pyport.h +++ b/Include/pyport.h @@ -281,6 +281,8 @@ 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 */ + #ifndef FD_SETSIZE #define FD_SETSIZE 256 #endif @@ -304,6 +306,9 @@ typedef struct fd_set { #define FD_ZERO(p) memset((char *)(p), '\0', sizeof(*(p))) #endif /* FD_SET */ + +#endif /* fd manipulation macros */ + #ifdef __cplusplus } #endif |