mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-11 06:59:29 -04:00
29 lines
573 B
C
29 lines
573 B
C
/* $NetBSD: ppsapi_timepps.h,v 1.1.1.1 2009/12/13 16:55:42 kardel Exp $ */
|
|
|
|
/* 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
|