diff options
author | Ryan <fauxpark@gmail.com> | 2023-03-24 04:21:37 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-23 17:21:37 +0000 |
commit | 1e07ff1fb108a305feca659b17ec03ba3e750455 (patch) | |
tree | 2e6de7250e713a53a9c5d35759e3b6add867ebb4 /keyboards/gopolar | |
parent | fa4dfb542fb62e0279e679a10f1ea7e01b4bf61c (diff) |
Fix some more missing `#pragma once`s (#20241)
Diffstat (limited to 'keyboards/gopolar')
-rw-r--r-- | keyboards/gopolar/gg86/lib/logo.h | 2 | ||||
-rw-r--r-- | keyboards/gopolar/gg86/lib/wave.h | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/keyboards/gopolar/gg86/lib/logo.h b/keyboards/gopolar/gg86/lib/logo.h index 08ab8ea529..d1197b15f5 100644 --- a/keyboards/gopolar/gg86/lib/logo.h +++ b/keyboards/gopolar/gg86/lib/logo.h @@ -14,4 +14,6 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#pragma once + void render_logo(void); diff --git a/keyboards/gopolar/gg86/lib/wave.h b/keyboards/gopolar/gg86/lib/wave.h index f4e5e5052c..d87525c1d4 100644 --- a/keyboards/gopolar/gg86/lib/wave.h +++ b/keyboards/gopolar/gg86/lib/wave.h @@ -15,6 +15,8 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#pragma once + extern const unsigned char font[] PROGMEM; #define ROW_1 OLED_DISPLAY_WIDTH |