aboutsummaryrefslogtreecommitdiff
path: root/musl/utime.h
diff options
context:
space:
mode:
Diffstat (limited to 'musl/utime.h')
-rw-r--r--musl/utime.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/musl/utime.h b/musl/utime.h
deleted file mode 100644
index 5755bd5..0000000
--- a/musl/utime.h
+++ /dev/null
@@ -1,29 +0,0 @@
-#ifndef _UTIME_H
-#define _UTIME_H
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#include <features.h>
-
-#define __NEED_time_t
-
-#include <bits/alltypes.h>
-
-struct utimbuf {
- time_t actime;
- time_t modtime;
-};
-
-int utime (const char *, const struct utimbuf *);
-
-#if _REDIR_TIME64
-__REDIR(utime, __utime64);
-#endif
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif