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

Link fix for MinGW.

This fixes

    libguile/threads.c:1502: undefined reference to `select_used_without_including_sys_select_h'

* libguile/threads.c: Include sys/select.h.
This commit is contained in:
Jan (janneke) Nieuwenhuizen 2021-04-12 18:21:59 +02:00 committed by Michael Gran
parent af96820e07
commit 79ea1082d0

View file

@ -31,6 +31,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h> /* for memset used by FD_ZERO on Solaris 10 */
#include <sys/select.h>
#include <sys/time.h>
#include <sys/select.h> /* from Gnulib */
#include <unistd.h>