signal: Kill bogus dependency on list.h

list_head is in types.h, not list.h.

Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
This commit is contained in:
Kent Overstreet
2023-12-11 13:34:45 -05:00
parent eee51b0ae5
commit 22c336d0d3
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -3,6 +3,7 @@
#define _LINUX_SIGNAL_H
#include <linux/bug.h>
#include <linux/list.h>
#include <linux/signal_types.h>
#include <linux/string.h>
+1 -1
View File
@@ -6,7 +6,7 @@
* Basic signal handling related data type definitions:
*/
#include <linux/list.h>
#include <linux/types.h>
#include <uapi/linux/signal.h>
typedef struct kernel_siginfo {