1UTIME(2) System Calls Manual UTIME(2)
2
3
4
6 utime - set file times
7
9 #include <sys/types.h>
10 utime(file, timep)
11 char *file;
12 time_t timep[2];
13
15 The utime call uses the `accessed' and `updated' times in that order
16 from the timep vector to set the corresponding recorded times for file.
17
18 The caller must be the owner of the file or the super-user. The
19 `inode-changed' time of the file is set to the current time.
20
22 stat (2)
23
25 (utime = 30.)
26 sys utime; file; timep
27
28
29
30 UTIME(2)