diff options
Diffstat (limited to 'libc/sysdeps')
-rw-r--r-- | libc/sysdeps/linux/common/Makefile.in | 4 | ||||
-rw-r--r-- | libc/sysdeps/linux/common/utime.c | 1 | ||||
-rw-r--r-- | libc/sysdeps/linux/common/utimes.c | 1 |
3 files changed, 5 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/Makefile.in b/libc/sysdeps/linux/common/Makefile.in index c2584daa4..ec889ca0d 100644 --- a/libc/sysdeps/linux/common/Makefile.in +++ b/libc/sysdeps/linux/common/Makefile.in @@ -55,6 +55,10 @@ ifneq ($(UCLIBC_HAS_ADVANCED_REALTIME),y) CSRC := $(filter-out posix_fadvise64.c posix_fadvise.c,$(CSRC)) endif +ifneq ($(UCLIBC_SUSV4_LEGACY),y) +CSRC := $(filter-out utime.c,$(CSRC)) +endif + ifneq ($(UCLIBC_HAS_EPOLL),y) CSRC := $(filter-out epoll.c,$(CSRC)) endif diff --git a/libc/sysdeps/linux/common/utime.c b/libc/sysdeps/linux/common/utime.c index a9f988a43..c9fd1bfbb 100644 --- a/libc/sysdeps/linux/common/utime.c +++ b/libc/sysdeps/linux/common/utime.c @@ -31,4 +31,5 @@ int utime(const char *file, const struct utimbuf *times) return utimes(file, times ? timevals : NULL); } #endif +link_warning(utime, "the use of OBSOLESCENT `utime' is discouraged, use `utimes'") libc_hidden_def(utime) diff --git a/libc/sysdeps/linux/common/utimes.c b/libc/sysdeps/linux/common/utimes.c index f4781e0a4..99d92027b 100644 --- a/libc/sysdeps/linux/common/utimes.c +++ b/libc/sysdeps/linux/common/utimes.c @@ -32,5 +32,4 @@ int utimes(const char *file, const struct timeval tvp[2]) return utime(file, times); } #endif -link_warning(utimes, "the use of LEGACY `utimes' is discouraged, use `utime'") libc_hidden_def(utimes) |