Skip to content

Commit df48ea2

Browse files
committed
arch: arm: coterx_m: Added some #include in fpu.h
Added missing #include for used types uint32_t and bool in file fpu.h Signed-off-by: Michele Sardo <msmttchr@gmail.com>
1 parent 322da1d commit df48ea2

File tree

1 file changed

+3
-0
lines changed
  • include/zephyr/arch/arm/cortex_m

1 file changed

+3
-0
lines changed

include/zephyr/arch/arm/cortex_m/fpu.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
#ifndef ZEPHYR_INCLUDE_ARCH_ARM_CORTEX_M_FPU_H_
88
#define ZEPHYR_INCLUDE_ARCH_ARM_CORTEX_M_FPU_H_
99

10+
#include <stdint.h>
11+
#include <stdbool.h>
12+
1013
struct fpu_ctx_full {
1114
uint32_t caller_saved[16];
1215
uint32_t callee_saved[16];

0 commit comments

Comments
 (0)