| 8 | #define PREV(ptr) ((ptr)->_internal_do_not_access.prev) |
| 9 | |
| 10 | static inline void list_clear(struct list_node *head) |
| 11 | { |
| 12 | PREV(head) = NEXT(head) = head; |
| 13 | } |
| 14 | |
| 15 | void _list_init(struct list_node *head) |
| 16 | { |
no outgoing calls
no test coverage detected