aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/kconfig/list_types.h
blob: d935b7c5aa8137f4b7faba0293839bec912f3e67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef LIST_TYPES_H
#define LIST_TYPES_H

struct list_head {
	struct list_head *next, *prev;
};

struct hlist_head {
	struct hlist_node *first;
};

struct hlist_node {
	struct hlist_node *next, **pprev;
};

#endif /* LIST_TYPES_H */