summaryrefslogtreecommitdiff
path: root/quantum/send_string
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2022-11-05 21:45:40 +1100
committerGitHub <noreply@github.com>2022-11-05 21:45:40 +1100
commitfe00c8021192c43e27e5a91a5193d7fbe07b9fa8 (patch)
tree0d5f952c02e648e64efa2f1a9054c146216a236a /quantum/send_string
parenta69ab05dd687cb9aa38e0c125e4f64956c7da6c7 (diff)
Reduce includes for send_string header (#18952)
Diffstat (limited to 'quantum/send_string')
-rw-r--r--quantum/send_string/send_string.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/quantum/send_string/send_string.c b/quantum/send_string/send_string.c
index 818a52f6dc..820fc25163 100644
--- a/quantum/send_string/send_string.c
+++ b/quantum/send_string/send_string.c
@@ -14,11 +14,15 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <ctype.h>
+#include "send_string.h"
-#include "quantum.h"
+#include <ctype.h>
+#include <stdlib.h>
-#include "send_string.h"
+#include "quantum_keycodes.h"
+#include "keycode.h"
+#include "action.h"
+#include "wait.h"
#if defined(AUDIO_ENABLE) && defined(SENDSTRING_BELL)
# include "audio.h"