summaryrefslogtreecommitdiff
path: root/quantum/action.c
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2022-03-10 04:09:38 +1100
committerGitHub <noreply@github.com>2022-03-09 17:09:38 +0000
commit77180a6649bbf9f54a515acafe1cbe688f51a519 (patch)
treee93346a9cc1d2e3bc1d28391c2e1fc411270de74 /quantum/action.c
parent5d67c4d90895bf5a14b4557107b2899551dea934 (diff)
Fixup builds. (#16596)
Diffstat (limited to 'quantum/action.c')
-rw-r--r--quantum/action.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/quantum/action.c b/quantum/action.c
index 487218777e..60301fa606 100644
--- a/quantum/action.c
+++ b/quantum/action.c
@@ -15,6 +15,13 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <limits.h>
+
+#ifdef DEBUG_ACTION
+# include "debug.h"
+#else
+# include "nodebug.h"
+#endif
+
#include "host.h"
#include "keycode.h"
#include "keyboard.h"
@@ -34,12 +41,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
# include "backlight.h"
#endif
-#ifdef DEBUG_ACTION
-# include "debug.h"
-#else
-# include "nodebug.h"
-#endif
-
#ifdef POINTING_DEVICE_ENABLE
# include "pointing_device.h"
#endif