]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Use "myselect.h" as intended.
authorGuido van Rossum <guido@python.org>
Tue, 23 Jun 1992 15:23:28 +0000 (15:23 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 23 Jun 1992 15:23:28 +0000 (15:23 +0000)
Modules/selectmodule.c

index 0a102bd0eaf38792a12ca5847adb57b1d59bdf72..1c4028dbc25cf7094196ac8c5c9ec1ca29b03a78 100644 (file)
@@ -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;