diff options
author | Ryan <fauxpark@gmail.com> | 2020-12-16 14:27:23 +1100 |
---|---|---|
committer | Drashna Jael're <drashna@live.com> | 2021-01-12 22:46:08 -0800 |
commit | 664f5de68767ebb07417be0f7ca69c030cc10c37 (patch) | |
tree | 16dac5ab878e975ab9312b4429b77aa56ace25fd /quantum/audio | |
parent | a0eb53cb163a85d805e67217d34e2a1ba936e788 (diff) |
Normalise include statements in keyboard code (#11185)
Diffstat (limited to 'quantum/audio')
-rw-r--r-- | quantum/audio/voices.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/audio/voices.c b/quantum/audio/voices.c index 53a65e4e37..1592618be4 100644 --- a/quantum/audio/voices.c +++ b/quantum/audio/voices.c @@ -15,7 +15,7 @@ */ #include "voices.h" #include "audio.h" -#include "stdlib.h" +#include <stdlib.h> // these are imported from audio.c extern uint16_t envelope_index; |