2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
11 int utimes(const char *file
, struct timeval tvp
[2])
14 ULONG t
= (ULONG
)tvp
[1].tv_sec
;
16 ds
.ds_Days
= t
/ (60*60*24);
17 ds
.ds_Minute
= (t
/ 60) % (60*24);
18 ds
.ds_Tick
= (t
% 60) * TICKS_PER_SECOND
;
20 if (SetFileDate(file
, &ds
))