Skip to content

Commit fdb4212

Browse files
committed
fix(soc): fix stddef.h missed include in pmu_struct.h headers
1 parent 4b4ad77 commit fdb4212

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

components/soc/esp32h2/register/soc/pmu_struct.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
#pragma once
77

88
#include <stdint.h>
9+
#include <stddef.h>
910
#include "soc/pmu_reg.h"
1011
#ifdef __cplusplus
1112
extern "C" {

components/soc/esp32h21/register/soc/pmu_struct.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
#pragma once
77

88
#include <stdint.h>
9+
#include <stddef.h>
910
#include "soc/pmu_reg.h"
1011
#ifdef __cplusplus
1112
extern "C"

components/soc/esp32h4/register/soc/pmu_struct.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
#pragma once
77

88
#include <stdint.h>
9+
#include <stddef.h>
910
#ifdef __cplusplus
1011
extern "C" {
1112
#endif

0 commit comments

Comments
 (0)