Shaun Jackman pointed out that KERNEL_VERSION() is used without guards, so

defining it in a guard is silly.
This commit is contained in:
Rob Landley 2006-06-01 00:52:30 +00:00
parent 317a45cb62
commit 8fc32d9326

View File

@ -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 --------------------------------------- */