Add a missing include of an options header.

watchdog.c does an #ifdef DDB but does not #include "opt_ddb.h".
Fixing this turned up a missing include file.

MFC after:	1 week
X-MFC-With:	r261495, r279410
This commit is contained in:
Ryan Stone 2015-02-28 22:37:48 +00:00
parent 0fd841369a
commit ce6682d990
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=279413

View File

@ -28,6 +28,8 @@
*
*/
#include "opt_ddb.h"
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
@ -37,6 +39,7 @@ __FBSDID("$FreeBSD$");
#include <sys/conf.h>
#include <sys/uio.h>
#include <sys/kernel.h>
#include <sys/kdb.h>
#include <sys/malloc.h>
#include <sys/module.h>
#include <sys/sysctl.h>