Skip to content

Commit b0ea0c8

Browse files
galaknashif
authored andcommitted
debug: coredump: Fix build issue with armclang
Building tests/drivers/coredump/coredump_api with armclang gets: include/zephyr/debug/coredump.h:98:2: error: unknown type name 'uint8_t' uint8_t *buffer; ^ Fix simply be including <stdint.h> to get uint8_t typedef. Signed-off-by: Kumar Gala <[email protected]>
1 parent 6c47b9a commit b0ea0c8

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

include/zephyr/debug/coredump.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
#define ZEPHYR_INCLUDE_DEBUG_COREDUMP_H_
99

1010
#include <stddef.h>
11+
#include <stdint.h>
1112
#include <sys/types.h>
1213

1314
/* Query ID */

0 commit comments

Comments
 (0)