1 From 8f91385dbd5e7c14b36ecbd8a01ca82c709f6d77 Mon Sep 17 00:00:00 2001
2 From: Khem Raj <raj.khem@gmail.com>
3 Date: Fri, 24 Jun 2016 18:19:29 +0000
4 Subject: [PATCH] Include linux/param.h for EXEC_PAGESIZE definition
6 Musl does not include linux/param.h whereas glibc
7 does, so it fails to build on musl.
9 Signed-off-by: Khem Raj <raj.khem@gmail.com>
11 Upstream-Status: Submitted
13 src/watchdog.c | 3 +++
14 1 file changed, 3 insertions(+)
16 diff --git a/src/watchdog.c b/src/watchdog.c
17 index acf6450..486384a 100644
21 #include <sys/param.h> /* For EXEC_PAGESIZE */
22 #include <linux/oom.h>
23 #include <linux/watchdog.h>
25 +#include <linux/param.h>