summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/utime/utime.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utime/utime.c b/src/utime/utime.c
index 75ce6c1d..0ff34006 100644
--- a/src/utime/utime.c
+++ b/src/utime/utime.c
@@ -1,10 +1,10 @@
#include "time.h"
#include <utime.h>
+#include "_syscall.h"
int utime(const char *path, const struct utimbuf *times)
{
- (void)path; (void)times;
- return -1;
+ SYSCALL(utime, int, -1, path, times, 0, 0, 0, 0);
}
/*
POSIX(1)