xref: /openbmc/libmctp/container_of.h (revision 056a6ae95168abc9ac079ed61a0be5343093fadd)
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