lib: migrate includes to <zephyr/...>
In order to bring consistency in-tree, migrate all lib code to the new prefix <zephyr/...>. Note that the conversion has been scripted, refer to zephyrproject-rtos#45388 for more details. Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
This commit is contained in:
parent
741e838a62
commit
cbd31d720b
79 changed files with 199 additions and 199 deletions
|
@ -5,15 +5,15 @@
|
|||
*/
|
||||
|
||||
#include <errno.h>
|
||||
#include <kernel.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <limits.h>
|
||||
#include <posix/unistd.h>
|
||||
#include <posix/dirent.h>
|
||||
#include <zephyr/posix/unistd.h>
|
||||
#include <zephyr/posix/dirent.h>
|
||||
#include <string.h>
|
||||
#include <sys/fdtable.h>
|
||||
#include <zephyr/sys/fdtable.h>
|
||||
#include <sys/stat.h>
|
||||
#include <fcntl.h>
|
||||
#include <fs/fs.h>
|
||||
#include <zephyr/fs/fs.h>
|
||||
|
||||
BUILD_ASSERT(PATH_MAX >= MAX_FILE_NAME, "PATH_MAX is less than MAX_FILE_NAME");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue