* lib/sys_select.in.h: Include <string.h> also on OpenBSD.
+2010-10-08 Bruno Haible <bruno@clisp.org>
+
+ sys_select: Avoid warning due to undeclared memset() on OpenBSD 4.5.
+ * lib/sys_select.in.h: Include <string.h> also on OpenBSD.
+
2010-10-08 Bruno Haible <bruno@clisp.org>
nanosleep: Make replacement POSIX compliant.
/* On Solaris 10, <sys/select.h> provides an FD_ZERO implementation
that relies on memset(), but without including <string.h>.
But in any case avoid namespace pollution on glibc systems. */
-# if (defined __sun || defined __osf__ || defined __BEOS__) \
+# if (defined __OpenBSD__ || defined __sun || defined __osf__ || defined __BEOS__) \
&& ! defined __GLIBC__
# include <string.h>
# endif