summaryrefslogtreecommitdiff
path: root/emul
diff options
context:
space:
mode:
authorTodd C. Miller <Todd.Miller@courtesan.com>1995-06-17 23:02:15 +0000
committerTodd C. Miller <Todd.Miller@courtesan.com>1995-06-17 23:02:15 +0000
commit0ff5b77b933826ac5082953b9c284568031845b4 (patch)
tree8e51135f2e6b85bce3a7588f434ae636ede87eb8 /emul
parent66b63b974b01bee79547314c0c01b749368e4f8c (diff)
downloadsudo-0ff5b77b933826ac5082953b9c284568031845b4.tar.gz
Initial revision
Diffstat (limited to 'emul')
-rw-r--r--emul/utime.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/emul/utime.h b/emul/utime.h
new file mode 100644
index 000000000..f25462f6d
--- /dev/null
+++ b/emul/utime.h
@@ -0,0 +1,11 @@
+#ifndef _UTIME_H
+#define _UTIME_H
+
+struct utimbuf {
+ time_t actime; /* access time */
+ time_t modtime; /* mod time */
+};
+
+int utime __P((const char *, const struct utimbuf *));
+
+#endif /* _UTIME_H */