freebsd-dev/contrib/ntp/ntpd/ppsapi_timepps.h
Ollivier Robert ea906c4152 Merge ntpd & friends 4.2.4p5 from vendor/ntp/dist into head. Next commit
will update usr.sbin/ntp to match this.

MFC after:	2 weeks
2008-08-22 15:58:00 +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