summaryrefslogtreecommitdiff
path: root/tinyusb/common/binary.h
diff options
context:
space:
mode:
authorhathach <[email protected]>2013-02-04 13:13:07 +0700
committerhathach <[email protected]>2013-02-04 13:13:07 +0700
commita5b29c5d333fc5fe3bcd01de145e130765ed1d48 (patch)
tree02d62073dd521ce43e98ad46a5c177dd198e62c7 /tinyusb/common/binary.h
parent5ec56120e678672c9da1953ad1890ecfa7bdb773 (diff)
refractor include chain with following policies
- header file only include what it needs for its declarations.
Diffstat (limited to 'tinyusb/common/binary.h')
-rw-r--r--tinyusb/common/binary.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tinyusb/common/binary.h b/tinyusb/common/binary.h
index ef994ddb0..ea0f590e9 100644
--- a/tinyusb/common/binary.h
+++ b/tinyusb/common/binary.h
@@ -55,7 +55,7 @@
extern "C" {
#endif
-#include <stdint.h>
+#include "primitive_types.h"
/// n-th Bit
#define BIT_(n) (1 << (n))