summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-06-23 15:23:28 (GMT)
committerGuido van Rossum <guido@python.org>1992-06-23 15:23:28 (GMT)
commit9d479927194d2cae89461e981a8c9cfaf18aa606 (patch)
tree5d1e45348e944e38503a3416ceef4d191971c78a
parent1f4f7435c5e0ab3387813524699f42083b2290d8 (diff)
downloadcpython-9d479927194d2cae89461e981a8c9cfaf18aa606.zip
cpython-9d479927194d2cae89461e981a8c9cfaf18aa606.tar.gz
cpython-9d479927194d2cae89461e981a8c9cfaf18aa606.tar.bz2
Use "myselect.h" as intended.
-rw-r--r--Modules/selectmodule.c6
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;