|
Lines 75-82
Link Here
|
| 75 |
Return 0 on success, -1 (setting errno) on failure. */ |
75 |
Return 0 on success, -1 (setting errno) on failure. */ |
| 76 |
|
76 |
|
| 77 |
int |
77 |
int |
| 78 |
futimens (int fd ATTRIBUTE_UNUSED, |
78 |
gl_futimens (int fd ATTRIBUTE_UNUSED, |
| 79 |
char const *file, struct timespec const timespec[2]) |
79 |
char const *file, struct timespec const timespec[2]) |
| 80 |
{ |
80 |
{ |
| 81 |
/* Some Linux-based NFS clients are buggy, and mishandle time stamps |
81 |
/* Some Linux-based NFS clients are buggy, and mishandle time stamps |
| 82 |
of files in NFS file systems in some cases. We have no |
82 |
of files in NFS file systems in some cases. We have no |
|
Lines 185-189
Link Here
|
| 185 |
int |
185 |
int |
| 186 |
utimens (char const *file, struct timespec const timespec[2]) |
186 |
utimens (char const *file, struct timespec const timespec[2]) |
| 187 |
{ |
187 |
{ |
| 188 |
return futimens (-1, file, timespec); |
188 |
return gl_futimens (-1, file, timespec); |
| 189 |
} |
189 |
} |