summaryrefslogtreecommitdiff
path: root/src/sys
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys')
-rw-r--r--src/sys/times/times.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/sys/times/times.c b/src/sys/times/times.c
index 753d66ae..f677d3b4 100644
--- a/src/sys/times/times.c
+++ b/src/sys/times/times.c
@@ -1,11 +1,12 @@
#include "time.h"
#include <sys/times.h>
+#include "_syscall.h"
clock_t times(struct tms *buffer)
{
- (void)buffer;
- return (clock_t)-1;
+ SYSCALL(times, clock_t, -1, buffer, 0, 0, 0, 0, 0);
}
+
/*
POSIX(1)
*/