conflict with 'mysql/my_list.h' list_add() */
| 68 | */ |
| 69 | #ifndef _list_h_skip_list_add_ /* conflict with 'mysql/my_list.h' list_add() */ |
| 70 | static inline void list_add(struct list_head *new_entry, struct list_head *head) |
| 71 | { |
| 72 | __list_add(new_entry, head, head->next); |
| 73 | } |
| 74 | #endif |
| 75 | |
| 76 | /** |