Add include guards

This commit is contained in:
Mark Sikora 2018-04-14 17:19:39 -04:00
parent fd38f04ead
commit 69a2a92f9d

View file

@ -24,6 +24,9 @@ Most used files are located at
*/ */
#ifndef ERGODOX_H
#define ERGODOX_H
#include <stdint.h> #include <stdint.h>
#include <stdbool.h> #include <stdbool.h>
#include <avr/io.h> #include <avr/io.h>
@ -114,3 +117,4 @@ inline void ergodox_led_all_set(uint8_t n)
ergodox_right_led_3_set(n); ergodox_right_led_3_set(n);
} }
#endif