diff options
author | Ryan <fauxpark@gmail.com> | 2020-12-26 15:56:11 +1100 |
---|---|---|
committer | Drashna Jael're <drashna@live.com> | 2021-01-12 22:46:11 -0800 |
commit | 60fd4d61efcce3cda09ef2273f77bce49c1db456 (patch) | |
tree | a186c59c1897e9ee88fc65fdbd70a73f8aba51ad /drivers/avr/hd44780.h | |
parent | 3635973fd58ffc718805c1e85fa1be9bca4cfffd (diff) |
Change include guards in tmk_core/ and drivers/ to pragma once (#11240)
Diffstat (limited to 'drivers/avr/hd44780.h')
-rw-r--r-- | drivers/avr/hd44780.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/avr/hd44780.h b/drivers/avr/hd44780.h index e60817e989..08e60f8a44 100644 --- a/drivers/avr/hd44780.h +++ b/drivers/avr/hd44780.h @@ -1,5 +1,3 @@ -#ifndef LCD_H -#define LCD_H /************************************************************************* Title : C include file for the HD44780U LCD library (lcd.c) Author: Peter Fleury <pfleury@gmx.ch> http://tinyurl.com/peterfleury @@ -43,6 +41,8 @@ */ +#pragma once + #include <inttypes.h> #include <avr/pgmspace.h> @@ -346,5 +346,3 @@ extern void lcd_data(uint8_t data); #define lcd_puts_P(__s) lcd_puts_p(PSTR(__s)) /**@}*/ - -#endif // LCD_H |