diff options
author | rofl0r <retnyg@gmx.net> | 2012-12-06 19:29:38 +0100 |
---|---|---|
committer | rofl0r <retnyg@gmx.net> | 2012-12-06 20:27:54 +0100 |
commit | 7aec71c411373f8b28a8ba1443f2631ad08d4a1b (patch) | |
tree | 695e17d0e57a2273926da808cf865b2ecaf76542 /include/sys/time.h | |
parent | a631c5df53c22146389228f228506936e258379b (diff) | |
download | musl-7aec71c411373f8b28a8ba1443f2631ad08d4a1b.tar.gz musl-7aec71c411373f8b28a8ba1443f2631ad08d4a1b.tar.xz musl-7aec71c411373f8b28a8ba1443f2631ad08d4a1b.zip |
add obsolete futimesat()
this function is obsolete, however it's available as a syscall and as such qemu userspace emulation tries to forward it to the host kernel.
Diffstat (limited to 'include/sys/time.h')
-rw-r--r-- | include/sys/time.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sys/time.h b/include/sys/time.h index a0ed8e0f..559e817e 100644 --- a/include/sys/time.h +++ b/include/sys/time.h @@ -31,6 +31,7 @@ int utimes (const char *, const struct timeval [2]); #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) int futimes(int, const struct timeval [2]); +int futimesat(int, const char *, const struct timeval [2]); int lutimes(const char *, const struct timeval [2]); int settimeofday (const struct timeval *, void *); int adjtime (const struct timeval *, struct timeval *); |