ntp_intres.h revision 258945
1258945Sroberto#ifndef NTP_INTRES_H
2258945Sroberto#define NTP_INTRES_H
3258945Sroberto
4258945Sroberto/*
5258945Sroberto * Some systems do not support fork() and don't have an alternate
6258945Sroberto * threads implementation of ntp_intres.  Such systems are limited
7258945Sroberto * to using numeric IP addresses.
8258945Sroberto */
9258945Sroberto#if defined(VMS) || defined (SYS_VXWORKS) || \
10258945Sroberto    (!defined(HAVE_WORKING_FORK) && !defined(SYS_WINNT))
11258945Sroberto#define NO_INTRES
12258945Sroberto#endif
13258945Sroberto
14258945Sroberto#endif	/* !defined(NTP_INTRES_H) */
15