summaryrefslogtreecommitdiffstats
path: root/scripts/kconfig/list_types.h
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/kconfig/list_types.h')
-rw-r--r--scripts/kconfig/list_types.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/kconfig/list_types.h b/scripts/kconfig/list_types.h
new file mode 100644
index 000000000000..32899f424983
--- /dev/null
+++ b/scripts/kconfig/list_types.h
@@ -0,0 +1,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 */