diff options
author | Ian Moffett <ian@osmora.org> | 2025-03-27 02:34:18 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-03-27 02:34:18 -0400 |
commit | 22baa5ea8d87ce8e4dd41b209114aa5502b7b2a0 (patch) | |
tree | 90e12b01efcc65421169260add5b289a5ac084d8 | |
parent | 65a31ede4eb06b4811a802f0d659aac3fd03333c (diff) |
kernel: systm: Include assert.h
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | sys/include/sys/systm.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/include/sys/systm.h b/sys/include/sys/systm.h index 89f196f..42e1723 100644 --- a/sys/include/sys/systm.h +++ b/sys/include/sys/systm.h @@ -33,6 +33,7 @@ #include <sys/types.h> #include <sys/signal.h> #include <sys/proc.h> +#include <assert.h> #if defined(_KERNEL) int copyin(const void *uaddr, void *kaddr, size_t len); |