Skip to content

Commit

Permalink
Merge branch 'bugfix/unknown_time_t' into 'master'
Browse files Browse the repository at this point in the history
fix unknown type name 'time_t' error

See merge request app-frameworks/esp-rainmaker!411
  • Loading branch information
shahpiyushv committed Dec 8, 2023
2 parents 1ef4458 + 7d4c1e3 commit 752d91e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions components/esp_schedule/include/esp_schedule.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ extern "C" {
#endif

#include <stdint.h>
#include <time.h>

/** Schedule Handle */
typedef void *esp_schedule_handle_t;
Expand Down
1 change: 1 addition & 0 deletions components/esp_schedule/src/esp_schedule_nvs.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
// limitations under the License.

#include <string.h>
#include <time.h>
#include <esp_log.h>
#include <nvs.h>
#include "esp_schedule_internal.h"
Expand Down

0 comments on commit 752d91e

Please sign in to comment.