blob: 0bf1ed0ef7cff51f22079bf6c68c851cd3fff49b [file] [log] [blame]
#ifndef _CONTAINER_OF_H
#define _CONTAINER_OF_H
#ifndef container_of
#define container_of(ptr, type, member) \
(type *)((char *)(ptr) - offsetof(type, member))
#endif
#endif