diff options
Diffstat (limited to 'tmk_core/common/eeprom.h')
-rw-r--r-- | tmk_core/common/eeprom.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tmk_core/common/eeprom.h b/tmk_core/common/eeprom.h index 2cc2ccee3f..3696d0df3f 100644 --- a/tmk_core/common/eeprom.h +++ b/tmk_core/common/eeprom.h @@ -4,6 +4,8 @@ #if defined(__AVR__) #include <avr/eeprom.h> #else +#include <stdint.h> + uint8_t eeprom_read_byte (const uint8_t *__p); uint16_t eeprom_read_word (const uint16_t *__p); uint32_t eeprom_read_dword (const uint32_t *__p); |