FD_ZERO. Defining them in favor of using the system include files is
almost always wrong.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5106
dc483132-0cff-0310-8789-
dd5450dbe970
+Fri Mar 10 14:23:12 1995 Theodore Y. Ts'o <tytso@dcl>
+
+ * sysincl.h: Removed definition of FD_SETSIZE, FD_SET, FD_CLR,
+ FD_ISSET, and FD_ZERO. Defining them in favor of using
+ the system include files is almost always wrong.
+
Fri Mar 10 10:04:41 1995 Chris Provenzano (proven@mit.edu)
* func-proto.h (krb5_mk_req(), krb5_mk_req_extended(), krb5_rd_rep(),
friends */
#endif
-#ifndef FD_SET
-#define FD_SETSIZE (sizeof (fd_set) * 8)
-
-#define FD_SET(f,s) ((s)->fds_bits[0] |= (1 << (f)))
-#define FD_CLR(f,s) ((s)->fds_bits[0] &= ~(1 << (f)))
-#define FD_ISSET(f,s) ((s)->fds_bits[0] & (1 << (f)))
-#define FD_ZERO(s) ((s)->fds_bits[0] = 0)
-#endif
-
#if defined(SYSV) || defined(_AIX)
#include <fcntl.h>
#endif