diff options
author | Erez Zukerman <bulk@ezuk.org> | 2017-06-22 08:40:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-22 08:40:59 -0400 |
commit | fe9556104bcf6b101b95929c93fd21c9026fb4d2 (patch) | |
tree | b8091c0818882e849bf5e9056c7abacd360a6c03 /keyboards/pegasushoof | |
parent | 9d22a1a6d8491971ce87be48f0993db9a2309277 (diff) | |
parent | e87691fa5db011e50fa2a9a5e2881dfda9392bef (diff) |
Merge pull request #1331 from ariasuni/master
Fix undefined reference errors with avr-gcc 7.1
Diffstat (limited to 'keyboards/pegasushoof')
-rw-r--r-- | keyboards/pegasushoof/pegasushoof.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/keyboards/pegasushoof/pegasushoof.c b/keyboards/pegasushoof/pegasushoof.c index 6bb249aef4..cde814812e 100644 --- a/keyboards/pegasushoof/pegasushoof.c +++ b/keyboards/pegasushoof/pegasushoof.c @@ -17,6 +17,14 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "pegasushoof.h" + +extern inline void ph_caps_led_on(void); +extern inline void ph_caps_led_off(void); + +extern inline void ph_sclk_led_on(void); +extern inline void ph_sclk_led_off(void); + + __attribute__ ((weak)) void matrix_init_user(void) { }; |