diff options
author | Ryan <fauxpark@gmail.com> | 2020-12-26 15:56:11 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-26 15:56:11 +1100 |
commit | 1d1d5da43f86d9dded47c66afec94991d623f114 (patch) | |
tree | 5f0d4d303a1f5dd67a3d9a19b0f99b8e3f06a4e6 /drivers/avr/ssd1306.h | |
parent | 48f4768d33313e6a6ed48c31f95eb44feda10a51 (diff) | |
download | qmk_firmware-1d1d5da43f86d9dded47c66afec94991d623f114.tar.gz qmk_firmware-1d1d5da43f86d9dded47c66afec94991d623f114.zip |
Change include guards in tmk_core/ and drivers/ to pragma once (#11240)
Diffstat (limited to 'drivers/avr/ssd1306.h')
-rw-r--r-- | drivers/avr/ssd1306.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/avr/ssd1306.h b/drivers/avr/ssd1306.h index 9131afcf6..6eecdcfaa 100644 --- a/drivers/avr/ssd1306.h +++ b/drivers/avr/ssd1306.h | |||
@@ -1,5 +1,4 @@ | |||
1 | #ifndef SSD1306_H | 1 | #pragma once |
2 | #define SSD1306_H | ||
3 | 2 | ||
4 | #include <stdbool.h> | 3 | #include <stdbool.h> |
5 | #include <stdio.h> | 4 | #include <stdio.h> |
@@ -86,5 +85,3 @@ void matrix_write_char(struct CharacterMatrix *matrix, uint8_t c); | |||
86 | void matrix_write(struct CharacterMatrix *matrix, const char *data); | 85 | void matrix_write(struct CharacterMatrix *matrix, const char *data); |
87 | void matrix_write_P(struct CharacterMatrix *matrix, const char *data); | 86 | void matrix_write_P(struct CharacterMatrix *matrix, const char *data); |
88 | void matrix_render(struct CharacterMatrix *matrix); | 87 | void matrix_render(struct CharacterMatrix *matrix); |
89 | |||
90 | #endif | ||