Home | History | Annotate | Download | only in gnulib-lib

Lines Matching refs:ut

91     struct utimbuf ut;
93 ut.actime = statbuf.st_atime;
94 ut.modtime = statbuf.st_mtime;
95 utime (dest_filename, &ut);
99 struct timeval ut[2];
101 ut[0].tv_sec = statbuf.st_atime; ut[0].tv_usec = 0;
102 ut[1].tv_sec = statbuf.st_mtime; ut[1].tv_usec = 0;
103 utimes (dest_filename, &ut);