Sync usage with man page.
[netbsd-mini2440.git] / dist / ntp / ntpd / ppsapi_timepps.h
blobe8bdaa69658d43489c1f780aa09ed85e2b2525ed
1 /* $NetBSD$ */
3 /* ppsapi_timepps.h */
5 /*
6 * This logic first tries to get the timepps.h file from a standard
7 * location, and then from our include/ subdirectory.
8 */
10 #ifdef HAVE_TIMEPPS_H
11 # include <timepps.h>
12 #else
13 # ifdef HAVE_SYS_TIMEPPS_H
14 # include <sys/timepps.h>
15 # else
16 # ifdef HAVE_CIOGETEV
17 # include "timepps-SunOS.h"
18 # else
19 # ifdef HAVE_TIOCGPPSEV
20 # include "timepps-Solaris.h"
21 # else
22 # ifdef TIOCDCDTIMESTAMP
23 # include "timepps-SCO.h"
24 # endif
25 # endif
26 # endif
27 # endif
28 #endif