blob: 8adaf62fa6e2fe39526a0be9bc943298055199dc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/* 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
|