1 /* $NetBSD: ntp_intres.h,v 1.1.1.1 2012/01/31 21:23:13 kardel Exp $ */ 2 3 #ifndef NTP_INTRES_H 4 #define NTP_INTRES_H 5 6 /* 7 * Some systems do not support fork() and don't have an alternate 8 * threads implementation of ntp_intres. Such systems are limited 9 * to using numeric IP addresses. 10 */ 11 #if defined(VMS) || defined (SYS_VXWORKS) || \ 12 (!defined(HAVE_WORKING_FORK) && !defined(SYS_WINNT)) 13 #define NO_INTRES 14 #endif 15 16 #endif /* !defined(NTP_INTRES_H) */ 17