From: Jon Parise Date: Thu, 7 Mar 2002 20:27:37 +0000 (+0000) Subject: Correct the header file ordering. From 'man 3 inet' (FreeBSD 4.5): X-Git-Tag: help~149 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=822c15063678d251999e6e3a2aeba476e58f6c1c;p=php Correct the header file ordering. From 'man 3 inet' (FreeBSD 4.5): #include #include #include #include --- diff --git a/ext/ftp/ftp.c b/ext/ftp/ftp.c index cddac0825d..3350e86642 100644 --- a/ext/ftp/ftp.c +++ b/ext/ftp/ftp.c @@ -34,9 +34,12 @@ #ifdef PHP_WIN32 #include #else +#ifdef HAVE_SYS_TYPES_H +#include +#endif #include -#include #include +#include #include #endif #include