WL#5486: Remove code for unsupported platforms

Remove Zortech specific code.
This commit is contained in:
Davi Arnaut 2010-07-15 08:17:56 -03:00
commit bdab1de458
4 changed files with 1 additions and 59 deletions

View file

@ -101,7 +101,6 @@ int my_copystat(const char *from, const char *to, int MyFlags)
#endif /* !__WIN__ */
#ifndef VMS
#ifndef __ZTC__
if (MyFlags & MY_COPYTIME)
{
struct utimbuf timep;
@ -117,7 +116,6 @@ int my_copystat(const char *from, const char *to, int MyFlags)
time[1]= statbuf.st_mtime;
(void) utime((char*) to, time);/* Update last accessed and modified times */
}
#endif
#endif
return 0;
} /* my_copystat */