xref: /openbmc/libmctp/container_of.h (revision 060c71ed3b529c8e0a7de41e45b3b20b70933daf)
1 #ifndef _CONTAINER_OF_H
2 #define _CONTAINER_OF_H
3 
4 #ifndef container_of
5 #define container_of(ptr, type, member)                                        \
6 	(type *)((char *)(ptr) - offsetof(type, member))
7 #endif
8 
9 #endif
10