X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=lib%2Fpdu.c;h=eca054c658ecd20b7c52b3b41792e04991ab1218;hb=c5e346e15c043a6253cc5a838dd9c77febf624aa;hp=e4f296b5eed70d71846b95adff94dfbeaee55c2f;hpb=2142af5d472ae35afca3b6b2c0da26974e8b11b3;p=deb_libnfs.git diff --git a/lib/pdu.c b/lib/pdu.c index e4f296b..eca054c 100644 --- a/lib/pdu.c +++ b/lib/pdu.c @@ -14,17 +14,33 @@ You should have received a copy of the GNU Lesser General Public License along with this program; if not, see . */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#ifdef AROS +#include "aros_compat.h" +#endif + #ifdef WIN32 #include "win32_compat.h" -#else +#endif + +#ifdef HAVE_NETINET_IN_H +#include +#endif + +#ifdef HAVE_SYS_SOCKET_H +#include +#endif + +#ifdef HAVE_STRINGS_H #include -#endif/*WIN32*/ +#endif #include #include #include -#include -#include #include #include #include "slist.h" @@ -33,10 +49,6 @@ #include "libnfs-raw.h" #include "libnfs-private.h" -#ifdef AROS -#include "aros_compat.h" -#endif - struct rpc_pdu *rpc_allocate_pdu(struct rpc_context *rpc, int program, int version, int procedure, rpc_cb cb, void *private_data, zdrproc_t zdr_decode_fn, int zdr_decode_bufsize) { struct rpc_pdu *pdu;