When enlarging a large_fd_set, use FD_ZERO if possible

The most common case of creating a large_fd_set on UNIX
is to create it with size zero, and then immediately enlarge
it to size FD_SETSIZE.  Instead of looping and calling
FD_CLR(), we can optimize this common case with the OS's
FD_ZERO.
1 file changed