|
@@ -144,14 +144,16 @@ extern int utimes (__const char *__file, __const struct timeval __tvp[2])
|
|
__THROW __nonnull ((1));
|
|
__THROW __nonnull ((1));
|
|
libc_hidden_proto(utimes)
|
|
libc_hidden_proto(utimes)
|
|
|
|
|
|
-#if 0 /*def __USE_BSD*/
|
|
+#ifdef __USE_BSD
|
|
/* Same as `utimes', but does not follow symbolic links. */
|
|
/* Same as `utimes', but does not follow symbolic links. */
|
|
extern int lutimes (__const char *__file, __const struct timeval __tvp[2])
|
|
extern int lutimes (__const char *__file, __const struct timeval __tvp[2])
|
|
__THROW __nonnull ((1));
|
|
__THROW __nonnull ((1));
|
|
|
|
|
|
|
|
+#if 0
|
|
/* Same as `utimes', but takes an open file descriptor instead of a name. */
|
|
/* Same as `utimes', but takes an open file descriptor instead of a name. */
|
|
extern int futimes (int __fd, __const struct timeval __tvp[2]) __THROW;
|
|
extern int futimes (int __fd, __const struct timeval __tvp[2]) __THROW;
|
|
#endif
|
|
#endif
|
|
|
|
+#endif
|
|
|
|
|
|
#ifdef __USE_GNU
|
|
#ifdef __USE_GNU
|
|
/* Change the access time of FILE relative to FD to TVP[0] and the
|
|
/* Change the access time of FILE relative to FD to TVP[0] and the
|