From: Eric Andersen Date: Wed, 11 Dec 2002 03:41:28 +0000 (-0000) Subject: Eliminate dependancy on kernel header files. Naughty naughty. X-Git-Tag: 1_00_pre1~312 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=8882ea53d5c0349e5570c5044e7f1a34a2ee6e5f;p=oweals%2Fbusybox.git Eliminate dependancy on kernel header files. Naughty naughty. Using linux kernel headers is a Bad Thing(tm) and should be punished. -Erik --- diff --git a/util-linux/hwclock.c b/util-linux/hwclock.c index 412995cb1..06c3d89b9 100644 --- a/util-linux/hwclock.c +++ b/util-linux/hwclock.c @@ -30,10 +30,15 @@ #include #include #include -#include #include #include "busybox.h" + +/* Copied from linux/rtc.h to eliminate the kernel dependancy */ +#define RTC_SET_TIME _IOW('p', 0x0a, struct tm) /* Set RTC time */ +#define RTC_RD_TIME _IOR('p', 0x09, struct tm) /* Read RTC time */ + + #ifdef CONFIG_FEATURE_HWCLOCK_LONGOPTIONS # ifndef _GNU_SOURCE # define _GNU_SOURCE