diff options
author | Ryan <fauxpark@gmail.com> | 2022-11-05 21:45:40 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-05 21:45:40 +1100 |
commit | fe00c8021192c43e27e5a91a5193d7fbe07b9fa8 (patch) | |
tree | 0d5f952c02e648e64efa2f1a9054c146216a236a /quantum/send_string | |
parent | a69ab05dd687cb9aa38e0c125e4f64956c7da6c7 (diff) |
Reduce includes for send_string header (#18952)
Diffstat (limited to 'quantum/send_string')
-rw-r--r-- | quantum/send_string/send_string.c | 10 |
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" |