about summary refs log tree commit diff stats
path: root/src/common.h
blob: 8c5725d50732f065a2e387667094023e65aedc8d (plain) (blame)
1
2
3
4
5
6
7
#ifndef SRC_COMMON_H_
#define SRC_COMMON_H_

#define container_of(ptr, type, member) \
  ((type *) ((char *) (ptr) - offsetof(type, member)))

#endif  /* SRC_COMMON_H_ */