mirror of
https://github.com/curl/curl.git
synced 2026-05-16 02:16:21 +03:00
FreeBSD needs sys/types.h before we include sys/select.h that was included
mainly for AIX in the first place...! As reported in bug report #556869
This commit is contained in:
parent
9263652c6d
commit
baa77ec13b
1 changed files with 3 additions and 0 deletions
|
|
@ -26,6 +26,9 @@
|
|||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#ifdef HAVE_SYS_TYPES_H
|
||||
#include <sys/types.h>
|
||||
#endif
|
||||
#ifdef HAVE_SYS_SELECT_H
|
||||
#include <sys/select.h>
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue