blob: facefe565ba84f3e6d5f120d5dac2a0aec95c427 [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