[PATCH] include/linux/kernel.h: Remove labs()

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Remove labs() since it is not used/needed.

Signed-off-by: Richard Knutsson <[email protected]>
---
Could not find any references to it (other then defined in gcc's stdlib.h),
compile-tested with "allyes" on i386 just to be sure.
If abs()'s int is not sufficient, it then should be replaced with typeof (imho).


diff --git a/include/linux/kernel.h b/include/linux/kernel.h
index 63fb18d..a029430 100644
--- a/include/linux/kernel.h
+++ b/include/linux/kernel.h
@@ -92,11 +92,6 @@ extern int cond_resched(void);
 		(__x < 0) ? -__x : __x;		\
 	})
 
-#define labs(x) ({				\
-		long __x = (x);			\
-		(__x < 0) ? -__x : __x;		\
-	})
-
 extern struct atomic_notifier_head panic_notifier_list;
 extern long (*panic_blink)(long time);
 NORET_TYPE void panic(const char * fmt, ...)
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[Index of Archives]     [Kernel Newbies]     [Netfilter]     [Bugtraq]     [Photo]     [Stuff]     [Gimp]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Video 4 Linux]     [Linux for the blind]     [Linux Resources]
  Powered by Linux