libc: Move the declaration of futimens from sys/time.h to sys/stat.h

to follow the spec here:
https://pubs.opengroup.org/onlinepubs/9699919799/functions/futimens.html

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
Change-Id: Id8e418794bd43827c01af772ce704a8d3e7681c5
This commit is contained in:
Xiang Xiao
2021-07-09 02:34:11 +08:00
committed by Gustavo Henrique Nihei
parent 643ee82e9c
commit bae265274a
3 changed files with 45 additions and 46 deletions
+1
View File
@@ -171,6 +171,7 @@ int lstat(FAR const char *path, FAR struct stat *buf);
int fstat(int fd, FAR struct stat *buf);
int chmod(FAR const char *path, mode_t mode);
int fchmod(int fd, mode_t mode);
int futimens(int fd, const struct timespec times[2]);
mode_t umask(mode_t mask);