Skip to content

Commit

Permalink
Add missing errno includes
Browse files Browse the repository at this point in the history
  • Loading branch information
bjsowa committed Nov 18, 2024
1 parent 341d1f0 commit e768f9d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/system/arduino/esp32/system.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
#include <Arduino.h>
#include <esp_heap_caps.h>
#include <esp_random.h>
#include <errno.h>
#include <stddef.h>
#include <sys/time.h>

Expand Down
1 change: 1 addition & 0 deletions src/system/espidf/system.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

#include <esp_heap_caps.h>
#include <esp_random.h>
#include <errno.h>
#include <stddef.h>
#include <sys/time.h>

Expand Down
1 change: 1 addition & 0 deletions src/system/zephyr/system.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include <zephyr/random/random.h>
#endif

#include <errno.h>
#include <stddef.h>
#include <sys/time.h>
#include <unistd.h>
Expand Down

0 comments on commit e768f9d

Please sign in to comment.