aboutsummaryrefslogtreecommitdiff
path: root/src/kernel
diff options
context:
space:
mode:
authorCory Fields <cory-nospam-@coryfields.com>2023-02-22 15:36:14 +0000
committerCory Fields <cory-nospam-@coryfields.com>2023-02-22 15:46:21 +0000
commit49d01f32c9cc4de4fcd0d1f235e2c62e4acfc7a2 (patch)
tree174318de2a71dded3767c7cd08ccb6a04137d0dd /src/kernel
parent80f4979322b574be29c684b2e106804432420ebf (diff)
kernel: add missing include
This syncs the cs_main definition/declaration. Noticed when experimenting with the external visibility of cs_main.
Diffstat (limited to 'src/kernel')
-rw-r--r--src/kernel/cs_main.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/kernel/cs_main.cpp b/src/kernel/cs_main.cpp
index c3a08c9695..d27cb7caf3 100644
--- a/src/kernel/cs_main.cpp
+++ b/src/kernel/cs_main.cpp
@@ -2,6 +2,7 @@
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
+#include <kernel/cs_main.h>
#include <sync.h>
RecursiveMutex cs_main;