diff options
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 995f8e76a0..8bb2df85df 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 @@ extern void bzero(void *, int); # include <winsock.h> #else # define SOCKET int -# ifdef __BEOS__ -# include <net/socket.h> -# elif defined(__VMS) +# if defined(__VMS) # include <socket.h> # endif #endif |