ddb: Remove useless includes

systm.h was included for boothowto here, but it's not used here, so drop
this include. Also sys/cdefs.h isn't needed, drop it too.

Sponsored by:		Netflix
This commit is contained in:
Warner Losh 2024-02-06 15:20:02 -07:00
parent 1d3d30c8d2
commit 9d2c93c249

View file

@ -34,14 +34,12 @@
* Interface to new debugger.
*/
#include <sys/cdefs.h>
#include "opt_ddb.h"
#include <sys/param.h>
#include <sys/cons.h>
#include <sys/proc.h>
#include <sys/reboot.h>
#include <sys/systm.h> /* just for boothowto */
#include <sys/exec.h>
#ifdef KDB
#include <sys/kdb.h>