misplaced & in times() made it fail to work, and clobber the stack
diff --git a/src/time/times.c b/src/time/times.c
index e9b5a82..d63cd20 100644
--- a/src/time/times.c
+++ b/src/time/times.c
@@ -3,5 +3,5 @@
 
 clock_t times(struct tms *tms)
 {
-	return syscall1(__NR_times, (long)&tms);
+	return syscall1(__NR_times, (long)tms);
 }