diff options
author | Javier Martinez Canillas <javier@dowhile0.org> | 2018-02-25 14:38:01 +0100 |
---|---|---|
committer | Javier Martinez Canillas <javier@dowhile0.org> | 2018-02-25 14:43:00 +0100 |
commit | 4da127109451ff67690083346f49f9a8e2c4f306 (patch) | |
tree | b54cd5ef4d2fc8d68ed9db2bbdf4923f30b316a1 | |
parent | 606e09a231e38336eefb2075b340b43fda0dec41 (diff) | |
download | ldd3-4da127109451ff67690083346f49f9a8e2c4f306.tar.gz |
shortprint: Include <linux/sched/signal.h> header for signal_pending()
Signed-off-by: Javier Martinez Canillas <javier@dowhile0.org>
-rw-r--r-- | shortprint/shortprint.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/shortprint/shortprint.c b/shortprint/shortprint.c index 5c74e92..edce844 100644 --- a/shortprint/shortprint.c +++ b/shortprint/shortprint.c @@ -19,6 +19,7 @@ #include <linux/moduleparam.h> #include <linux/sched.h> +#include <linux/sched/signal.h> #include <linux/kernel.h> /* printk() */ #include <linux/fs.h> /* everything... */ #include <linux/errno.h> /* error codes */ |