summaryrefslogtreecommitdiff
path: root/quantum/process_keycode/process_tap_dance.c
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2023-07-11 17:07:24 +1000
committerGitHub <noreply@github.com>2023-07-11 17:07:24 +1000
commiteee0384167b965c60120e1222bc24c0b40cadac4 (patch)
tree9ff4859ab0727091177d7d6a99c54cca9d6b93f0 /quantum/process_keycode/process_tap_dance.c
parent39a97d2ee43d00e87a9f94971093863a864cbffd (diff)
process_keycode: remove direct `quantum.h` includes (#21486)
Diffstat (limited to 'quantum/process_keycode/process_tap_dance.c')
-rw-r--r--quantum/process_keycode/process_tap_dance.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/quantum/process_keycode/process_tap_dance.c b/quantum/process_keycode/process_tap_dance.c
index 706f5cddbb..1b2c6c8a44 100644
--- a/quantum/process_keycode/process_tap_dance.c
+++ b/quantum/process_keycode/process_tap_dance.c
@@ -13,7 +13,14 @@
* 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 "process_tap_dance.h"
#include "quantum.h"
+#include "action_layer.h"
+#include "action_tapping.h"
+#include "action_util.h"
+#include "timer.h"
+#include "wait.h"
static uint16_t active_td;
static uint16_t last_tap_time;