summaryrefslogtreecommitdiff
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
parenta69ab05dd687cb9aa38e0c125e4f64956c7da6c7 (diff)
Reduce includes for send_string header (#18952)
-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 @@
14 * along with this program. If not, see <http://www.gnu.org/licenses/>. 14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */ 15 */
16 16
17#include <ctype.h> 17#include "send_string.h"
18 18
19#include "quantum.h" 19#include <ctype.h>
20#include <stdlib.h>
20 21
21#include "send_string.h" 22#include "quantum_keycodes.h"
23#include "keycode.h"
24#include "action.h"
25#include "wait.h"
22 26
23#if defined(AUDIO_ENABLE) && defined(SENDSTRING_BELL) 27#if defined(AUDIO_ENABLE) && defined(SENDSTRING_BELL)
24# include "audio.h" 28# include "audio.h"