diff options
author | Sebastian Huber <sebastian.huber@embedded-brains.de> | 2021-01-26 15:16:31 +0100 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2021-01-26 17:27:35 +0100 |
commit | 3388a5a429a67a9ae036d12c769b21a767ad5ed0 (patch) | |
tree | abe9df553541d5647d6775942172cb06333caca3 /newlib | |
parent | b32f6dd40a2764aed1baec35da0a7512f3fbceb3 (diff) | |
download | newlib-3388a5a429a67a9ae036d12c769b21a767ad5ed0.zip newlib-3388a5a429a67a9ae036d12c769b21a767ad5ed0.tar.gz newlib-3388a5a429a67a9ae036d12c769b21a767ad5ed0.tar.bz2 |
Align *utime*() with POSIX/glibc
Change the prototypes to be in line with POSIX/glibc. This may fix
issues with new warnings produced by GCC 11.
Signed-off-by: Sebastian Huber <sebastian.huber@embedded-brains.de>
Diffstat (limited to 'newlib')
-rw-r--r-- | newlib/libc/include/sys/_default_fcntl.h | 2 | ||||
-rw-r--r-- | newlib/libc/include/sys/stat.h | 4 | ||||
-rw-r--r-- | newlib/libc/include/sys/time.h | 6 |
3 files changed, 6 insertions, 6 deletions
diff --git a/newlib/libc/include/sys/_default_fcntl.h b/newlib/libc/include/sys/_default_fcntl.h index b3177dd..50a0de4 100644 --- a/newlib/libc/include/sys/_default_fcntl.h +++ b/newlib/libc/include/sys/_default_fcntl.h @@ -221,7 +221,7 @@ extern int flock (int, int); #endif #if __GNU_VISIBLE #include <sys/time.h> -extern int futimesat (int, const char *, const struct timeval *); +extern int futimesat (int, const char *, const struct timeval [2]); #endif /* Provide _<systemcall> prototypes for functions provided by some versions diff --git a/newlib/libc/include/sys/stat.h b/newlib/libc/include/sys/stat.h index 8769112..722ed0e 100644 --- a/newlib/libc/include/sys/stat.h +++ b/newlib/libc/include/sys/stat.h @@ -153,10 +153,10 @@ int fstatat (int, const char *__restrict , struct stat *__restrict, int); int mkdirat (int, const char *, mode_t); int mkfifoat (int, const char *, mode_t); int mknodat (int, const char *, mode_t, dev_t); -int utimensat (int, const char *, const struct timespec *, int); +int utimensat (int, const char *, const struct timespec [2], int); #endif #if __POSIX_VISIBLE >= 200809 && !defined(__INSIDE_CYGWIN__) -int futimens (int, const struct timespec *); +int futimens (int, const struct timespec [2]); #endif /* Provide prototypes for most of the _<systemcall> names that are diff --git a/newlib/libc/include/sys/time.h b/newlib/libc/include/sys/time.h index 84a429b..3be6c1e 100644 --- a/newlib/libc/include/sys/time.h +++ b/newlib/libc/include/sys/time.h @@ -414,12 +414,12 @@ struct itimerval { #include <time.h> __BEGIN_DECLS -int utimes (const char *__path, const struct timeval *__tvp); +int utimes (const char *, const struct timeval [2]); #if __BSD_VISIBLE int adjtime (const struct timeval *, struct timeval *); -int futimes (int, const struct timeval *); -int lutimes (const char *, const struct timeval *); +int futimes (int, const struct timeval [2]); +int lutimes (const char *, const struct timeval [2]); int settimeofday (const struct timeval *, const struct timezone *); #endif |