diff options
author | Ollivier Robert <roberto@FreeBSD.org> | 1999-12-09 13:01:21 +0000 |
---|---|---|
committer | Ollivier Robert <roberto@FreeBSD.org> | 1999-12-09 13:01:21 +0000 |
commit | c0b746e5e8d9479f05b3749cbf1f73b8928719bd (patch) | |
tree | fc0cfa1aab0ff6b228f511b410733ef4f35d1ead /contrib/ntp/ntpd/refclock_ptbacts.c |
Virgin import of ntpd 4.0.98fvendor/ntp/4.0.98f
Notes
Notes:
svn path=/vendor/ntp/dist/; revision=54359
svn path=/vendor/ntp/4.0.98f/; revision=54361; tag=vendor/ntp/4.0.98f
Diffstat (limited to 'contrib/ntp/ntpd/refclock_ptbacts.c')
-rw-r--r-- | contrib/ntp/ntpd/refclock_ptbacts.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/contrib/ntp/ntpd/refclock_ptbacts.c b/contrib/ntp/ntpd/refclock_ptbacts.c new file mode 100644 index 000000000000..09d7bf4c2203 --- /dev/null +++ b/contrib/ntp/ntpd/refclock_ptbacts.c @@ -0,0 +1,16 @@ +/* + * crude hack to avoid hard links in distribution + * and keep only one ACTS type source for different + * ACTS refclocks + */ + +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + +#if defined(REFCLOCK) && defined(CLOCK_PTBACTS) +# define KEEPPTBACTS +# include "refclock_acts.c" +#else /* not (REFCLOCK && CLOCK_PTBACTS) */ +int refclock_ptbacts_bs; +#endif /* not (REFCLOCK && CLOCK_PTBACTS) */ |