Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'include/mpw/utime.h')
-rw-r--r--include/mpw/utime.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/mpw/utime.h b/include/mpw/utime.h
new file mode 100644
index 000000000..e8bf66f2b
--- /dev/null
+++ b/include/mpw/utime.h
@@ -0,0 +1,7 @@
+
+struct utimbuf {
+ time_t actime;
+ time_t modtime;
+};
+
+int utime (char *, struct utimbuf *);