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/doio/kb16/lib | |
parent | fa4dfb542fb62e0279e679a10f1ea7e01b4bf61c (diff) |
Fix some more missing `#pragma once`s (#20241)
Diffstat (limited to 'keyboards/doio/kb16/lib')
-rw-r--r-- | keyboards/doio/kb16/lib/bongocat/bongocat.h | 2 | ||||
-rw-r--r-- | keyboards/doio/kb16/lib/layer_status/layer_status.h | 2 | ||||
-rw-r--r-- | keyboards/doio/kb16/lib/logo.h | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/keyboards/doio/kb16/lib/bongocat/bongocat.h b/keyboards/doio/kb16/lib/bongocat/bongocat.h index 65ceabc682..2ffeca1993 100644 --- a/keyboards/doio/kb16/lib/bongocat/bongocat.h +++ b/keyboards/doio/kb16/lib/bongocat/bongocat.h @@ -14,4 +14,6 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#pragma once + void render_bongocat(void); diff --git a/keyboards/doio/kb16/lib/layer_status/layer_status.h b/keyboards/doio/kb16/lib/layer_status/layer_status.h index a367a829d7..2c4b08f25a 100644 --- a/keyboards/doio/kb16/lib/layer_status/layer_status.h +++ b/keyboards/doio/kb16/lib/layer_status/layer_status.h @@ -15,4 +15,6 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#pragma once + void render_layer_status(void); diff --git a/keyboards/doio/kb16/lib/logo.h b/keyboards/doio/kb16/lib/logo.h index 91d1ddce34..bb3ddc446e 100644 --- a/keyboards/doio/kb16/lib/logo.h +++ b/keyboards/doio/kb16/lib/logo.h @@ -15,4 +15,6 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#pragma once + void render_logo(void); |