1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-08-20 03:00:14 +03:00
openwrt-xburst/package/busybox/patches/530-watchdog_fix.patch
nbd 22c5f2c385 busybox: fix watchdog util compile
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16150 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-05-28 16:55:52 +00:00

13 lines
253 B
Diff

--- a/miscutils/watchdog.c
+++ b/miscutils/watchdog.c
@@ -10,7 +10,8 @@
*/
#include "libbb.h"
-#include "linux/watchdog.h"
+#include <linux/types.h>
+#include <linux/watchdog.h>
#define OPT_FOREGROUND (1 << 0)
#define OPT_STIMER (1 << 1)