From 6bdef6b8c21f7a5144d5387e91c970fc038f319b Mon Sep 17 00:00:00 2001 From: Hannes Egler Date: Sun, 15 Jul 2018 20:21:26 +0200 Subject: Fixed kbd8x compile issues (#3409) Fixed compile errors on some machines --- keyboards/kbd8x/kbd8x.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/keyboards/kbd8x/kbd8x.c b/keyboards/kbd8x/kbd8x.c index af7ab7a07..97c2e74e3 100644 --- a/keyboards/kbd8x/kbd8x.c +++ b/keyboards/kbd8x/kbd8x.c @@ -13,8 +13,16 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + #include "kbd8x.h" +extern inline void caps_led_off(void); +extern inline void caps_led_on(void); +extern inline void num_led_off(void); +extern inline void num_led_on(void); +extern inline void scroll_led_off(void); +extern inline void scroll_led_on(void); + void matrix_init_kb(void) { // put your keyboard start-up code here // runs once when the firmware starts up -- cgit v1.2.3-24-g4f1b