X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=tmk_core%2Fcommon%2Feeprom.h;h=5ae0f6eebd9361ca9cc20e7bbf002782341a1130;hb=c080a3e7c4aa565c696224588b16d4e883f60a7b;hp=2cc2ccee3f74cdbcb81e3df29e00a2f88795d699;hpb=6c296557909501b71fe344ce379e74094cf77c8e;p=qmk_firmware.git diff --git a/tmk_core/common/eeprom.h b/tmk_core/common/eeprom.h index 2cc2ccee3..5ae0f6eeb 100644 --- a/tmk_core/common/eeprom.h +++ b/tmk_core/common/eeprom.h @@ -4,6 +4,8 @@ #if defined(__AVR__) #include #else +#include + 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); @@ -18,5 +20,4 @@ void eeprom_update_dword (uint32_t *__p, uint32_t __value); void eeprom_update_block (const void *__src, void *__dst, uint32_t __n); #endif - #endif /* TMK_CORE_COMMON_EEPROM_H_ */