diff options
author | Drashna Jaelre <drashna@live.com> | 2021-01-29 23:35:16 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-30 18:35:16 +1100 |
commit | 6b9a7e21e953d68d6ae093c2d727f1f3ac2798c0 (patch) | |
tree | d36f5678b91723613d91cec9f47c46ff16f32036 /drivers/avr | |
parent | 4fe4087d4abd13a0f7b5754a1766151f02daf3fc (diff) |
Include stdbool.h in uart.h (#11728)
Diffstat (limited to 'drivers/avr')
-rw-r--r-- | drivers/avr/uart.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/avr/uart.h b/drivers/avr/uart.h index d5ec563db2..602eb3d8b0 100644 --- a/drivers/avr/uart.h +++ b/drivers/avr/uart.h @@ -24,6 +24,7 @@ #pragma once #include <stdint.h> +#include <stdbool.h> void uart_init(uint32_t baud); |