aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer <[email protected]>1994-09-20 04:07:48 +0000
committerKarl Heuer <[email protected]>1994-09-20 04:07:48 +0000
commit53ea491aa51386be2ce042efcfee47880dcc66f0 (patch)
tree779f8aa617da703ada4518e10e4928628771a5ac
parente4f74c7e882531505a0da7c24a19a9a3ade20bda (diff)
(set_file_times): Move this out of the USG conditional.
-rw-r--r--src/sysdep.c58
1 files changed, 29 insertions, 29 deletions
diff --git a/src/sysdep.c b/src/sysdep.c
index 85076908f1..51cbb04fc4 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -3023,35 +3023,6 @@ rename (from, to)
#endif
-int
-set_file_times (path, atime, mtime)
- char *path;
- EMACS_TIME atime, mtime;
-{
-#ifdef HAVE_UTIMES
- struct timeval tv[2];
- tv[0] = atime;
- tv[1] = mtime;
- return utimes (path, tv);
-#else
-#ifdef HAVE_UTIME
-#ifndef HAVE_STRUCT_UTIMBUF
- struct utimbuf {
- long actime;
- long modtime;
- };
-#endif
- struct utimbuf utb;
- utb.actime = EMACS_SECS (atime);
- utb.modtime = EMACS_SECS (mtime);
- return utime (path, &utb);
-#else /* !HAVE_UTIMES && !HAVE_UTIME */
- /* Should we set errno here? If so, set it to what? */
- return -1;
-#endif
-#endif
-}
-
#ifdef HPUX
#ifndef HAVE_PERROR
@@ -3391,6 +3362,35 @@ readdirver (dirp)
#endif /* NONSYSTEM_DIR_LIBRARY */
+int
+set_file_times (path, atime, mtime)
+ char *path;
+ EMACS_TIME atime, mtime;
+{
+#ifdef HAVE_UTIMES
+ struct timeval tv[2];
+ tv[0] = atime;
+ tv[1] = mtime;
+ return utimes (path, tv);
+#else
+#ifdef HAVE_UTIME
+#ifndef HAVE_STRUCT_UTIMBUF
+ struct utimbuf {
+ long actime;
+ long modtime;
+ };
+#endif
+ struct utimbuf utb;
+ utb.actime = EMACS_SECS (atime);
+ utb.modtime = EMACS_SECS (mtime);
+ return utime (path, &utb);
+#else /* !HAVE_UTIMES && !HAVE_UTIME */
+ /* Should we set errno here? If so, set it to what? */
+ return -1;
+#endif
+#endif
+}
+
/* mkdir and rmdir functions, for systems which don't have them. */
#ifndef HAVE_MKDIR