From: Felix Fietkau Date: Fri, 14 Nov 2008 21:20:18 +0000 (+0100) Subject: don't redefine container_of if it's already defined X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fuci.git;a=commitdiff_plain;h=54d2ede9afc23bfae8d1421772fe8acb8fe62f7d don't redefine container_of if it's already defined --- diff --git a/uci.h b/uci.h index d48ea7c..2ae02b7 100644 --- a/uci.h +++ b/uci.h @@ -432,8 +432,10 @@ struct uci_ptr * @type: the type of the container struct this is embedded in. * @member: the name of the member within the struct. */ +#ifndef container_of #define container_of(ptr, type, member) \ ((type *) ((char *)ptr - offsetof(type,member))) +#endif /**