Skip to content
This repository has been archived by the owner on Nov 5, 2023. It is now read-only.

Commit

Permalink
zephyr: update include paths to use <zephyr/...>
Browse files Browse the repository at this point in the history
Zephyr has prefixed all of its includes with <zephyr/...>. While the old
mode can still be used (CONFIG_LEGACY_INCLUDE_PATH) and is still enabled
by default, it's better to be prepared for its removal in the future.

Signed-off-by: Gerard Marull-Paretas <gerard@teslabs.com>
  • Loading branch information
gmarull committed May 10, 2022
1 parent f0ab2c5 commit c7a0bc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/civetweb.c
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ mg_static_assert(sizeof(void *) >= sizeof(int), "data type size check");
#include <sys/socket.h>
#include <time.h>

#include <zephyr.h>
#include <zephyr/zephyr.h>

/* Max worker threads is the max of pthreads minus the main application thread
* and minus the main civetweb thread, thus -2
Expand Down

0 comments on commit c7a0bc2

Please sign in to comment.