1 /*
2  * Copyright 2022 Meta
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <errno.h>
8 #include <sys/stat.h>
9 
10 #include <zephyr/kernel.h>
11 
stat(const char * restrict path,struct stat * restrict buf)12 int stat(const char *restrict path, struct stat *restrict buf)
13 {
14 	ARG_UNUSED(path);
15 	ARG_UNUSED(buf);
16 
17 	errno = ENOTSUP;
18 
19 	return -1;
20 }
21