]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - contrib/ntp/ntpd/ppsapi_timepps.h
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / contrib / ntp / ntpd / ppsapi_timepps.h
1 /* ppsapi_timepps.h */
2
3 /*
4  * This logic first tries to get the timepps.h file from a standard
5  * location, and then from our include/ subdirectory.
6  */
7
8 #ifdef HAVE_TIMEPPS_H
9 # include <timepps.h>
10 #else
11 # ifdef HAVE_SYS_TIMEPPS_H
12 #  include <sys/timepps.h>
13 # else
14 #  ifdef HAVE_CIOGETEV
15 #   include "timepps-SunOS.h"
16 #  else
17 #   ifdef HAVE_TIOCGPPSEV
18 #    include "timepps-Solaris.h"
19 #   else
20 #    ifdef TIOCDCDTIMESTAMP
21 #     include "timepps-SCO.h"
22 #    endif
23 #   endif
24 #  endif
25 # endif
26 #endif