1
1

Some older BSD systems, OS X 10.3.9 for example, need <stdio.h> before

<sys/select.h>.  And <uio.h> is needed for iovec
Этот коммит содержится в:
James Housley 2007-06-14 22:50:32 +00:00
родитель bc179b6e87
Коммит 136b2bfcdc

Просмотреть файл

@ -51,6 +51,8 @@
http://www.mail-archive.com/libssh2-devel%40lists.sourceforge.net/msg00003.html
http://www.mail-archive.com/libssh2-devel%40lists.sourceforge.net/msg00224.html
*/
#include <stdio.h>
#ifdef HAVE_POLL
# include <sys/poll.h>
#else
@ -68,7 +70,10 @@
#include "libssh2_publickey.h"
#include "libssh2_sftp.h"
#include <stdio.h>
/* Needed for struct iovec on some platforms */
#ifdef HAVE_SYS_UIO_H
#include <sys/uio.h>
#endif
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>