summaryrefslogtreecommitdiff
path: root/quantum/dip_switch.h
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2022-11-04 11:54:35 +0000
committerGitHub <noreply@github.com>2022-11-04 11:54:35 +0000
commitea98aa8e5ef8bebac52a76ad22ddd22e6d7f289e (patch)
tree8246ef1793ed09df336860d317881a99146dc685 /quantum/dip_switch.h
parent8213eb7fbb979ee20c5394f1281713b76bde86e5 (diff)
Reduce includes for dip_switch header (#18951)
Diffstat (limited to 'quantum/dip_switch.h')
-rw-r--r--quantum/dip_switch.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/quantum/dip_switch.h b/quantum/dip_switch.h
index 058a10f41f..6e79dcb0bf 100644
--- a/quantum/dip_switch.h
+++ b/quantum/dip_switch.h
@@ -18,7 +18,8 @@
#pragma once
-#include "quantum.h"
+#include <stdbool.h>
+#include <stdint.h>
bool dip_switch_update_kb(uint8_t index, bool active);
bool dip_switch_update_user(uint8_t index, bool active);