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:
parent
6bfedde58c
commit
d568a582ef
1 changed files with 5 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue