From: Rob Landley Date: Thu, 1 Jun 2006 00:52:30 +0000 (-0000) Subject: Shaun Jackman pointed out that KERNEL_VERSION() is used without guards, so X-Git-Tag: 1_2_0~240 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=8fc32d9326be21e4f5fb19762ba2bb38081153d5;p=oweals%2Fbusybox.git Shaun Jackman pointed out that KERNEL_VERSION() is used without guards, so defining it in a guard is silly. --- diff --git a/include/platform.h b/include/platform.h index 49797de2a..7d25850f5 100644 --- a/include/platform.h +++ b/include/platform.h @@ -157,9 +157,7 @@ __extension__ typedef unsigned long long __u64; #endif /* ___digital__ && __unix__ */ /*----- Kernel versioning ------------------------------------*/ -#ifdef __linux__ #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) -#endif /* ---- miscellaneous --------------------------------------- */