git: 6f8a182b15c4 - main - db_sym.c: restore sys/systm.h include

From: Mitchell Horne <mhorne_at_FreeBSD.org>
Date: Mon, 03 Oct 2022 17:54:15 UTC
The branch main has been updated by mhorne:

URL: https://cgit.FreeBSD.org/src/commit/?id=6f8a182b15c4c14cfb9462b806a928ddaf47c87e

commit 6f8a182b15c4c14cfb9462b806a928ddaf47c87e
Author:     Mitchell Horne <mhorne@FreeBSD.org>
AuthorDate: 2022-10-03 17:51:22 +0000
Commit:     Mitchell Horne <mhorne@FreeBSD.org>
CommitDate: 2022-10-03 17:51:22 +0000

    db_sym.c: restore sys/systm.h include
    
    This was erroneously dropped in the previous commit.
    
    Reported by:    Jenkins
    Fixes:  754cb545b68b ("ddb: de-duplicate decode_syscall()")
---
 sys/ddb/db_sym.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys/ddb/db_sym.c b/sys/ddb/db_sym.c
index 3fdf80a76ae6..8883d84fcace 100644
--- a/sys/ddb/db_sym.c
+++ b/sys/ddb/db_sym.c
@@ -36,6 +36,7 @@ __FBSDID("$FreeBSD$");
 #include "opt_kstack_pages.h"
 
 #include <sys/param.h>
+#include <sys/systm.h>
 #include <sys/pcpu.h>
 #include <sys/smp.h>
 #include <sys/sysent.h>