diff options
| author | hathach <[email protected]> | 2013-02-04 13:13:07 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2013-02-04 13:13:07 +0700 |
| commit | a5b29c5d333fc5fe3bcd01de145e130765ed1d48 (patch) | |
| tree | 02d62073dd521ce43e98ad46a5c177dd198e62c7 /tinyusb/common/binary.h | |
| parent | 5ec56120e678672c9da1953ad1890ecfa7bdb773 (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.h | 2 |
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)) |
