Remove support for BeOS
diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c
index 995f8e7..8bb2df8 100644
--- a/Modules/selectmodule.c
+++ b/Modules/selectmodule.c
@@ -2,8 +2,6 @@
Under Unix, the file descriptors are small integers.
Under Win32, select only exists for sockets, and sockets may
have any value except INVALID_SOCKET.
- Under BeOS, we suffer the same dichotomy as Win32; sockets can be anything
- >= 0.
*/
#include "Python.h"
@@ -49,9 +47,7 @@
# include <winsock.h>
#else
# define SOCKET int
-# ifdef __BEOS__
-# include <net/socket.h>
-# elif defined(__VMS)
+# if defined(__VMS)
# include <socket.h>
# endif
#endif