From 49d01f32c9cc4de4fcd0d1f235e2c62e4acfc7a2 Mon Sep 17 00:00:00 2001 From: Cory Fields Date: Wed, 22 Feb 2023 15:36:14 +0000 Subject: [PATCH] kernel: add missing include This syncs the cs_main definition/declaration. Noticed when experimenting with the external visibility of cs_main. --- src/kernel/cs_main.cpp | 1 + 1 file changed, 1 insertion(+) 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 #include RecursiveMutex cs_main;