diff options
| author | Ryan | 2024-04-03 01:44:25 +0200 |
|---|---|---|
| committer | GitHub | 2024-04-03 01:44:25 +0200 |
| commit | c635733a7fd48c6692d818ac8621571cbc5f470a (patch) | |
| tree | 93ecd160d846ed3b5cca3e4abe2f30441030ea55 /keyboards/miiiw/common/shift_register.c | |
| parent | 408f6e43cd2522b6a4073bedcfbe2ee7df2603dd (diff) | |
Remove `quantum.h` includes from keyboard code (#23394)
Diffstat (limited to 'keyboards/miiiw/common/shift_register.c')
| -rw-r--r-- | keyboards/miiiw/common/shift_register.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/miiiw/common/shift_register.c b/keyboards/miiiw/common/shift_register.c index 1f21c12468..2c9259180e 100644 --- a/keyboards/miiiw/common/shift_register.c +++ b/keyboards/miiiw/common/shift_register.c @@ -14,8 +14,8 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "quantum.h" #include "shift_register.h" +#include <string.h> static void shift_out(void); |