diff options
author | roberto <roberto@FreeBSD.org> | 2006-09-28 16:02:34 +0000 |
---|---|---|
committer | roberto <roberto@FreeBSD.org> | 2006-09-28 16:02:34 +0000 |
commit | 8b5a86d4fda08a9c68231415812edcb26be52f79 (patch) | |
tree | 07075aad65cccb21c6871e64ce2306b35c8d0d67 /contrib/ntp | |
parent | 25b467e3d94f1aca3ea93de947c097f663d1a44e (diff) | |
download | FreeBSD-src-8b5a86d4fda08a9c68231415812edcb26be52f79.zip FreeBSD-src-8b5a86d4fda08a9c68231415812edcb26be52f79.tar.gz |
Fix compilation with gcc 4.1. This is imported on the vendor branch as it
was applied in the mainstream source and a later complete import of
4.2.2p3 will complete the fix.
Submitted by: kan
Diffstat (limited to 'contrib/ntp')
-rw-r--r-- | contrib/ntp/include/ntp_stdlib.h | 2 | ||||
-rw-r--r-- | contrib/ntp/include/ntpd.h | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/contrib/ntp/include/ntp_stdlib.h b/contrib/ntp/include/ntp_stdlib.h index 9d1d4c9..3dc6fe0 100644 --- a/contrib/ntp/include/ntp_stdlib.h +++ b/contrib/ntp/include/ntp_stdlib.h @@ -134,8 +134,10 @@ extern u_char * cache_key; /* key pointer */ extern u_int cache_keylen; /* key length */ /* clocktypes.c */ +#ifdef NTP_REFCLOCK_H struct clktype; extern struct clktype clktypes[]; +#endif /* getopt.c */ extern char * ntp_optarg; /* global argument pointer */ diff --git a/contrib/ntp/include/ntpd.h b/contrib/ntp/include/ntpd.h index cd3aad2..54d3e13 100644 --- a/contrib/ntp/include/ntpd.h +++ b/contrib/ntp/include/ntpd.h @@ -226,8 +226,10 @@ extern int config_priority; #endif /* ntp_control.c */ +#if 0 struct ctl_trap; extern struct ctl_trap ctl_trap[]; +#endif extern int num_ctl_traps; extern keyid_t ctl_auth_keyid; /* keyid used for authenticating write requests */ |