Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5be02f1d authored by Richard Knutsson's avatar Richard Knutsson Committed by Linus Torvalds
Browse files

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



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

Signed-off-by: default avatarRichard Knutsson <ricknu-0@student.ltu.se>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 893de2df
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -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, ...)