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 'newlib/libc/machine/spu/sys/utime.h')
-rw-r--r--newlib/libc/machine/spu/sys/utime.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/newlib/libc/machine/spu/sys/utime.h b/newlib/libc/machine/spu/sys/utime.h
deleted file mode 100644
index 18731a179..000000000
--- a/newlib/libc/machine/spu/sys/utime.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef _SYS_UTIME_H
-#define _SYS_UTIME_H
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/*
- * Per POSIX
- */
-struct utimbuf
-{
- time_t actime;
- time_t modtime;
-};
-
-int utime(const char *, const struct utimbuf *);
-
-#ifdef __cplusplus
-};
-#endif
-
-#endif