diff options
author | Ryan <fauxpark@gmail.com> | 2020-12-26 15:56:11 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-26 15:56:11 +1100 |
commit | 1d1d5da43f86d9dded47c66afec94991d623f114 (patch) | |
tree | 5f0d4d303a1f5dd67a3d9a19b0f99b8e3f06a4e6 /tmk_core/protocol/xt.h | |
parent | 48f4768d33313e6a6ed48c31f95eb44feda10a51 (diff) | |
download | qmk_firmware-1d1d5da43f86d9dded47c66afec94991d623f114.tar.gz qmk_firmware-1d1d5da43f86d9dded47c66afec94991d623f114.zip |
Change include guards in tmk_core/ and drivers/ to pragma once (#11240)
Diffstat (limited to 'tmk_core/protocol/xt.h')
-rw-r--r-- | tmk_core/protocol/xt.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tmk_core/protocol/xt.h b/tmk_core/protocol/xt.h index e7e1a13f4..6dc5f19d0 100644 --- a/tmk_core/protocol/xt.h +++ b/tmk_core/protocol/xt.h | |||
@@ -36,8 +36,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |||
36 | POSSIBILITY OF SUCH DAMAGE. | 36 | POSSIBILITY OF SUCH DAMAGE. |
37 | */ | 37 | */ |
38 | 38 | ||
39 | #ifndef XT_H | 39 | #pragma once |
40 | #define XT_H | ||
41 | 40 | ||
42 | #define XT_DATA_IN() \ | 41 | #define XT_DATA_IN() \ |
43 | do { \ | 42 | do { \ |
@@ -69,5 +68,3 @@ POSSIBILITY OF SUCH DAMAGE. | |||
69 | 68 | ||
70 | void xt_host_init(void); | 69 | void xt_host_init(void); |
71 | uint8_t xt_host_recv(void); | 70 | uint8_t xt_host_recv(void); |
72 | |||
73 | #endif | ||