1 /* $NetBSD: ntp_if.h,v 1.5 2020/05/25 20:47:19 christos Exp $ */ 2 3 /* 4 * Sockets are not standard. 5 * So hide uglyness in include file. 6 */ 7 /* was: defined(SYS_CONVEXOS9) */ 8 #if defined(HAVE__SYS_SYNC_QUEUE_H) && defined(HAVE__SYS_SYNC_SEMA_H) 9 # include "/sys/sync/queue.h" 10 # include "/sys/sync/sema.h" 11 #endif 12 13 /* was: (defined(SYS_SOLARIS) && !defined(bsd)) || defined(SYS_SUNOS4) */ 14 /* was: defined(SYS_UNIXWARE1) */ 15 #ifdef HAVE_SYS_SOCKIO_H 16 # include <sys/sockio.h> 17 #endif 18 19 /* was: #if defined(SYS_PTX) || defined(SYS_SINIXM) */ 20 #ifdef HAVE_SYS_STREAM_H 21 # include <sys/stream.h> 22 #endif 23 #ifdef HAVE_SYS_STROPTS_H 24 # include <sys/stropts.h> 25 #endif 26 27 #ifdef HAVE_NET_IF_H 28 # include <net/if.h> 29 #endif /* HAVE_NET_IF_H */ 30