diff options
author | Guido van Rossum <guido@python.org> | 1992-06-23 15:23:28 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-06-23 15:23:28 (GMT) |
commit | 9d479927194d2cae89461e981a8c9cfaf18aa606 (patch) | |
tree | 5d1e45348e944e38503a3416ceef4d191971c78a /Modules/selectmodule.c | |
parent | 1f4f7435c5e0ab3387813524699f42083b2290d8 (diff) | |
download | cpython-9d479927194d2cae89461e981a8c9cfaf18aa606.zip cpython-9d479927194d2cae89461e981a8c9cfaf18aa606.tar.gz cpython-9d479927194d2cae89461e981a8c9cfaf18aa606.tar.bz2 |
Use "myselect.h" as intended.
Diffstat (limited to 'Modules/selectmodule.c')
-rw-r--r-- | Modules/selectmodule.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c index 0a102bd..1c4028d 100644 --- a/Modules/selectmodule.c +++ b/Modules/selectmodule.c @@ -29,11 +29,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include "compile.h" #include "ceval.h" -#include <sys/types.h> -#include <sys/time.h> -#include <sys/param.h> - -/* XXX Maybe you need to define the FD_* macros here when porting this code */ +#include "myselect.h" static object *SelectError; |