diff options
Diffstat (limited to 'hwclock/kd.c')
-rw-r--r-- | hwclock/kd.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/hwclock/kd.c b/hwclock/kd.c index 6be5fabd0..3b5708a91 100644 --- a/hwclock/kd.c +++ b/hwclock/kd.c @@ -1,9 +1,9 @@ /* kd.c - KDGHWCLK stuff, possibly m68k only - deprecated */ -#ifndef __m68k__ - #include "clock.h" +#ifndef __m68k__ + struct clock_ops * probe_for_kd_clock() { return NULL; @@ -13,11 +13,9 @@ probe_for_kd_clock() { #include <unistd.h> /* for close() */ #include <fcntl.h> /* for O_RDONLY */ -#include <errno.h> #include <sysexits.h> #include <sys/ioctl.h> -#include "clock.h" #include "nls.h" static int con_fd = -1; /* opened by probe_for_kd_clock() */ |