aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/common/print.h
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/common/print.h')
-rw-r--r--tmk_core/common/print.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/tmk_core/common/print.h b/tmk_core/common/print.h
index 1c7723621..647a5aa05 100644
--- a/tmk_core/common/print.h
+++ b/tmk_core/common/print.h
@@ -22,8 +22,7 @@
22 * THE SOFTWARE. 22 * THE SOFTWARE.
23 */ 23 */
24 24
25#ifndef PRINT_H__ 25#pragma once
26#define PRINT_H__ 1
27 26
28#include <stdint.h> 27#include <stdint.h>
29#include <stdbool.h> 28#include <stdbool.h>
@@ -269,5 +268,3 @@ extern "C"
269#define pbin16(data) print_bin16(data) 268#define pbin16(data) print_bin16(data)
270#define pbin_reverse(data) print_bin_reverse8(data) 269#define pbin_reverse(data) print_bin_reverse8(data)
271#define pbin_reverse16(data) print_bin_reverse16(data) 270#define pbin_reverse16(data) print_bin_reverse16(data)
272
273#endif