From ae278c88cf2fcfd4bd34fcf2c96d9b8a5b4dec29 Mon Sep 17 00:00:00 2001 From: maximilian attems Date: Tue, 22 May 2012 16:20:42 +0200 Subject: include: [c.h] protect container_of fixes lots of warning noise: ../../../include/c.h:112:0: warning: "container_of" redefined [enabled by default] /usr/lib/klibc/include/stddef.h:52:0: note: this is the location of the previous definition Signed-off-by: maximilian attems --- include/c.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/c.h') diff --git a/include/c.h b/include/c.h index b6d8cedaf..8c8db7332 100644 --- a/include/c.h +++ b/include/c.h @@ -109,9 +109,11 @@ #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) #endif +#ifndef container_of #define container_of(ptr, type, member) ({ \ const __typeof__( ((type *)0)->member ) *__mptr = (ptr); \ (type *)( (char *)__mptr - offsetof(type,member) );}) +#endif #ifndef HAVE_PROGRAM_INVOCATION_SHORT_NAME # ifdef HAVE___PROGNAME -- cgit v1.2.3-55-g7522