|
|
@@ -234,7 +234,7 @@ unlinkat(int fd, const char *path, int flag)
|
|
|
}
|
|
|
|
|
|
int
|
|
|
-utimensat(int fd, const char *path, const struct timespec *ts, int flag)
|
|
|
+utimensat(int fd, const char *path, const struct timespec ts[2], int flag)
|
|
|
{
|
|
|
errno = ENOSYS;
|
|
|
return -1;
|
|
|
@@ -257,7 +257,7 @@ ftruncate(int fd, off_t length)
|
|
|
#endif
|
|
|
|
|
|
int
|
|
|
-futimens(int fd, const struct timespec *times)
|
|
|
+futimens(int fd, const struct timespec times[2])
|
|
|
{
|
|
|
errno = ENOSYS;
|
|
|
return -1;
|
|
|
@@ -268,4 +268,4 @@ nanosleep(const struct timespec *req, struct timespec *rem)
|
|
|
{
|
|
|
errno = ENOSYS;
|
|
|
return -1;
|
|
|
-}
|
|
|
+}
|