diff options
author | Drashna Jaelre <drashna@live.com> | 2021-12-27 15:57:41 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-28 10:57:41 +1100 |
commit | 14d5c3f2f14d20c8d3559068b00dead66273765c (patch) | |
tree | 309abff32195c963eb43ac035f80a192936b6fcc | |
parent | cd3db41d068dd59e437e36a131c055ab3d7e1ff5 (diff) |
[Bug] Include missing string.h include (#15606)
-rw-r--r-- | quantum/matrix_common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/quantum/matrix_common.c b/quantum/matrix_common.c index 5fdc9186fa..98b83ddcf6 100644 --- a/quantum/matrix_common.c +++ b/quantum/matrix_common.c @@ -7,6 +7,7 @@ #ifdef SPLIT_KEYBOARD # include "split_common/split_util.h" # include "split_common/transactions.h" +# include <string.h> # define ROWS_PER_HAND (MATRIX_ROWS / 2) #else |