diff options
author | QMK Bot <hello@qmk.fm> | 2020-12-26 04:56:43 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2020-12-26 04:56:43 +0000 |
commit | 0b37c0dfa0690c60ddf0798d8d771b74f47ebca1 (patch) | |
tree | 3fa910e5907b75137d047363eee6680cc89228ee /tmk_core/common/eeprom.h | |
parent | ffd7e44e5af660fbd131f67ef803ac3aad2123d6 (diff) | |
parent | 1d1d5da43f86d9dded47c66afec94991d623f114 (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'tmk_core/common/eeprom.h')
-rw-r--r-- | tmk_core/common/eeprom.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tmk_core/common/eeprom.h b/tmk_core/common/eeprom.h index 8a81e70668..f5b3f0ad53 100644 --- a/tmk_core/common/eeprom.h +++ b/tmk_core/common/eeprom.h @@ -1,5 +1,4 @@ -#ifndef TMK_CORE_COMMON_EEPROM_H_ -#define TMK_CORE_COMMON_EEPROM_H_ +#pragma once #if defined(__AVR__) && !defined(EEPROM_DRIVER) # include <avr/eeprom.h> @@ -20,5 +19,3 @@ void eeprom_update_word(uint16_t *__p, uint16_t __value); void eeprom_update_dword(uint32_t *__p, uint32_t __value); void eeprom_update_block(const void *__src, void *__dst, size_t __n); #endif - -#endif /* TMK_CORE_COMMON_EEPROM_H_ */ |