summaryrefslogtreecommitdiff
path: root/uci.h
diff options
context:
space:
mode:
Diffstat (limited to 'uci.h')
-rw-r--r--uci.h2
1 files changed, 2 insertions, 0 deletions
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
/**