1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 22:10:21 +02:00

Include <string.h>, needed for memset() which is used by

FD_ZERO() on Solaris 10.  Reported by Claes Wallin.
This commit is contained in:
Kevin Ryde 2006-07-21 00:09:52 +00:00
parent 6bfedde58c
commit d568a582ef

View file

@ -27,6 +27,11 @@
#endif
#include <stdio.h>
#include <assert.h>
#ifdef HAVE_STRING_H
#include <string.h> /* for memset used by FD_ZERO on Solaris 10 */
#endif
#if HAVE_SYS_TIME_H
#include <sys/time.h>
#endif