summaryrefslogtreecommitdiff
path: root/PACE/pace/win32/utime.c
diff options
context:
space:
mode:
Diffstat (limited to 'PACE/pace/win32/utime.c')
-rw-r--r--PACE/pace/win32/utime.c37
1 files changed, 0 insertions, 37 deletions
diff --git a/PACE/pace/win32/utime.c b/PACE/pace/win32/utime.c
deleted file mode 100644
index 1ee2542885b..00000000000
--- a/PACE/pace/win32/utime.c
+++ /dev/null
@@ -1,37 +0,0 @@
-/* $Id$
-
- * =============================================================================
- *
- * = LIBRARY
- * pace
- *
- * = FILENAME
- * pace/win32/utime.c
- *
- * = AUTHOR
- * Luther Baker
- *
- * ============================================================================= */
-
-#include "pace/utime.h"
-
-#if !defined (PACE_HAS_INLINE)
-# include "pace/win32/utime.inl"
-#endif /* ! PACE_HAS_INLINE */
-
-#if (PACE_HAS_POSIX_FS_UOF)
-int
-win32_utime (const char * path, const pace_utimbuf * times)
-{
- PACE_ERRNO_NO_SUPPORT_RETURN (-1);
-
- /* Not yet working
- char * path2 = (char*) malloc (sizeof (path));
- pace_strcpy (path2, path);
-
- pace_utimbuf * times2 = (pace_utimbuf*) malloc (sizeof (pace_utimbuf);
- memcpy (times2, times, sizeof times);
- return _utime (path2, times2);
- */
-}
-#endif /* PACE_HAS_POSIX_FS_UOF */