modify include/compat/netinet/ip.h

- add including <netinet/in_systm.h> for n_long on HP-UX
This commit is contained in:
kinichiro 2016-03-13 19:17:24 +09:00
parent 05f3422a9b
commit 14aa5f73ab

View File

@ -3,6 +3,10 @@
* netinet/ip.h compatibility shim
*/
#if defined(__hpux)
#include <netinet/in_systm.h>
#endif
#ifndef _WIN32
#include_next <netinet/ip.h>
#else