freebsd-skq/ntpd/ppsapi_timepps.h
Ollivier Robert ff717da2cf Import ntp 4.2.4p5 in the vendor code area. Far too many changes to list here,
please see CommitLog for detailed changes.

XXX html/build/hints/solaris.xtra.4095849 is not being imported as it conflicts
    with the detect-merge-conflict.sh script in our repo.
2008-08-18 14:26:05 +00:00

27 lines
497 B
C

/* ppsapi_timepps.h */
/*
* This logic first tries to get the timepps.h file from a standard
* location, and then from our include/ subdirectory.
*/
#ifdef HAVE_TIMEPPS_H
# include <timepps.h>
#else
# ifdef HAVE_SYS_TIMEPPS_H
# include <sys/timepps.h>
# else
# ifdef HAVE_CIOGETEV
# include "timepps-SunOS.h"
# else
# ifdef HAVE_TIOCGPPSEV
# include "timepps-Solaris.h"
# else
# ifdef TIOCDCDTIMESTAMP
# include "timepps-SCO.h"
# endif
# endif
# endif
# endif
#endif