From 8fc32d9326be21e4f5fb19762ba2bb38081153d5 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Thu, 1 Jun 2006 00:52:30 +0000 Subject: Shaun Jackman pointed out that KERNEL_VERSION() is used without guards, so defining it in a guard is silly. --- include/platform.h | 2 -- 1 file changed, 2 deletions(-) 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 --------------------------------------- */ -- cgit v1.2.3