diff options
author | Ryan <fauxpark@gmail.com> | 2024-03-31 01:07:19 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-30 14:07:19 +0000 |
commit | 2dd406f08fc5d9877c8fd2642e94975eae37e86f (patch) | |
tree | 97f1833428dff865e99a2332a9c779fc02ff803d /keyboards/dc01 | |
parent | 76bd5142cfed1fb8e07b9f32fb0b010fbc068fa4 (diff) |
Remove `quantum.h` includes from keyboard custom `matrix.c`s (#23371)
Diffstat (limited to 'keyboards/dc01')
-rw-r--r-- | keyboards/dc01/right/matrix.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/keyboards/dc01/right/matrix.c b/keyboards/dc01/right/matrix.c index 04a6d03804..f9b6738145 100644 --- a/keyboards/dc01/right/matrix.c +++ b/keyboards/dc01/right/matrix.c @@ -15,8 +15,6 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include <stdint.h> -#include <stdbool.h> #if defined(__AVR__) #include <avr/io.h> #include <avr/wdt.h> @@ -31,7 +29,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "timer.h" #include "i2c_slave.h" #include "lufa.h" -#include "quantum.h" #define SLAVE_I2C_ADDRESS 0x32 |