summaryrefslogtreecommitdiffstats
path: root/scripts/kconfig/list_types.h
blob: 32899f424983e100bb9c9bbf900dd1b9d4de2149 (plain)
1
2
3
4
5
6
7
8
9
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef LIST_TYPES_H
#define LIST_TYPES_H

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

#endif /* LIST_TYPES_H */