X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=support%2Fsys-time.c;h=a1c0ba0b184ee7326e5788adb0371215b5703109;hb=100bd760a46811121b4b47ebba941d4fb98486ab;hp=1309f2a975342252de9335d4245c1b955bf35441;hpb=416d4e10f905b8fe3d57f20b957e8cff86a7f1ec;p=mono.git diff --git a/support/sys-time.c b/support/sys-time.c index 1309f2a9753..a1c0ba0b184 100644 --- a/support/sys-time.c +++ b/support/sys-time.c @@ -69,27 +69,6 @@ Mono_Posix_Syscall_settimeofday ( return r; } -/* Remove this at some point in the future */ -gint32 -Mono_Posix_Syscall_utimes_bad (const char *filename, - struct Mono_Posix_Timeval *tv); - -gint32 -Mono_Posix_Syscall_utimes_bad (const char *filename, - struct Mono_Posix_Timeval *tv) -{ - struct timeval _tv; - struct timeval *ptv = NULL; - - if (tv) { - _tv.tv_sec = tv->tv_sec; - _tv.tv_usec = tv->tv_usec; - ptv = &_tv; - } - - return utimes (filename, ptv); -} - static inline struct timeval* copy_utimes (struct timeval* to, struct Mono_Posix_Timeval *from) {