From d0772f0be58d0095b1310d354b401a51ea24ef1a Mon Sep 17 00:00:00 2001 From: nvmd Date: Wed, 22 Apr 2026 18:49:51 -0300 Subject: [PATCH] fix(esp_libc): add missing stdint include --- components/esp_libc/priv_include/esp_time_impl.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/esp_libc/priv_include/esp_time_impl.h b/components/esp_libc/priv_include/esp_time_impl.h index 61c32dff199e..8ed3f133a0fd 100644 --- a/components/esp_libc/priv_include/esp_time_impl.h +++ b/components/esp_libc/priv_include/esp_time_impl.h @@ -5,6 +5,8 @@ */ #pragma once +#include + uint64_t esp_time_impl_get_time(void); uint64_t esp_time_impl_get_time_since_boot(void);