summaryrefslogtreecommitdiffstats
path: root/public/sdk/inc/posix/utime.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--public/sdk/inc/posix/utime.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/public/sdk/inc/posix/utime.h b/public/sdk/inc/posix/utime.h
new file mode 100644
index 000000000..c2167d173
--- /dev/null
+++ b/public/sdk/inc/posix/utime.h
@@ -0,0 +1,34 @@
+/*++
+
+Copyright (c) 1989-1996 Microsoft Corporation
+
+Module Name:
+
+ utime.h
+
+Abstract:
+
+ This module contains the utimbuf structure described in section 5.6.6.2
+ of IEEE P1003.1/Draft 13.
+
+--*/
+
+#ifndef _UTIME_
+#define _UTIME_
+
+#include <types.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+struct utimbuf {
+ time_t actime;
+ time_t modtime;
+};
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* _UTIME_ */