summaryrefslogtreecommitdiff
path: root/source4/lib/replace/system/time.h
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2008-05-09 10:47:23 +1000
committerAndrew Bartlett <abartlet@samba.org>2008-05-09 10:47:23 +1000
commit00ebe3df811a9eb7737fa6278d8784500c35bd14 (patch)
treeb9b0291e764d49586bab6388353a59515353a66e /source4/lib/replace/system/time.h
parentf446bf59e300a53f4564bcf99d8614b440905147 (diff)
parentca6ac11b46a75bf02cf873c6aedb4f85af227168 (diff)
downloadsamba-00ebe3df811a9eb7737fa6278d8784500c35bd14.tar.gz
samba-00ebe3df811a9eb7737fa6278d8784500c35bd14.tar.bz2
samba-00ebe3df811a9eb7737fa6278d8784500c35bd14.zip
Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into 4-0-local
(This used to be commit 2db0e86fb4abc27eed2d35e1d41122bc89a2c5fe)
Diffstat (limited to 'source4/lib/replace/system/time.h')
-rw-r--r--source4/lib/replace/system/time.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/source4/lib/replace/system/time.h b/source4/lib/replace/system/time.h
index 036812ab8f..4abf295d1a 100644
--- a/source4/lib/replace/system/time.h
+++ b/source4/lib/replace/system/time.h
@@ -39,6 +39,11 @@
#ifdef HAVE_UTIME_H
#include <utime.h>
+#else
+struct utimbuf {
+ time_t actime; /* access time */
+ time_t modtime; /* modification time */
+};
#endif
#ifndef HAVE_MKTIME
@@ -51,4 +56,14 @@ time_t rep_mktime(struct tm *t);
time_t rep_timegm(struct tm *tm);
#endif
+#ifndef HAVE_UTIME
+/* define is in "replace.h" */
+int rep_utime(const char *filename, const struct utimbuf *buf);
+#endif
+
+#ifndef HAVE_UTIMES
+/* define is in "replace.h" */
+int rep_utimes(const char *filename, const struct timeval tv[2]);
+#endif
+
#endif