aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/common/uart.h
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2020-12-26 15:56:11 +1100
committerGitHub <noreply@github.com>2020-12-26 15:56:11 +1100
commit1d1d5da43f86d9dded47c66afec94991d623f114 (patch)
tree5f0d4d303a1f5dd67a3d9a19b0f99b8e3f06a4e6 /tmk_core/common/uart.h
parent48f4768d33313e6a6ed48c31f95eb44feda10a51 (diff)
downloadqmk_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/common/uart.h')
-rw-r--r--tmk_core/common/uart.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/tmk_core/common/uart.h b/tmk_core/common/uart.h
index 59a1a7cd1..ea247b17b 100644
--- a/tmk_core/common/uart.h
+++ b/tmk_core/common/uart.h
@@ -1,5 +1,4 @@
1#ifndef _uart_included_h_ 1#pragma once
2#define _uart_included_h_
3 2
4#include <stdint.h> 3#include <stdint.h>
5 4
@@ -7,5 +6,3 @@ void uart_init(uint32_t baud);
7void uart_putchar(uint8_t c); 6void uart_putchar(uint8_t c);
8uint8_t uart_getchar(void); 7uint8_t uart_getchar(void);
9uint8_t uart_available(void); 8uint8_t uart_available(void);
10
11#endif