summaryrefslogtreecommitdiff
path: root/src/sys/times/times.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2024-01-31 01:32:28 -0500
committerJakob Kaivo <jkk@ung.org>2024-01-31 01:32:28 -0500
commitd74c7008bbdb17db6d33eb8bcf8081a14385bdfb (patch)
tree053b2f844e828422de915167575e59c3e2205a83 /src/sys/times/times.c
parent5fd6f055390692694b0090fdf7bdd5ebbb1976de (diff)
remove more cruft, update dependencies
Diffstat (limited to 'src/sys/times/times.c')
-rw-r--r--src/sys/times/times.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/sys/times/times.c b/src/sys/times/times.c
deleted file mode 100644
index 6c6cf329..00000000
--- a/src/sys/times/times.c
+++ /dev/null
@@ -1,12 +0,0 @@
-#include <time.h>
-#include <sys/times.h>
-#include "_syscall.h"
-
-clock_t times(struct tms *buffer)
-{
- SYSCALL(times, clock_t, -1, buffer, 0, 0, 0, 0, 0);
-}
-
-/*
-POSIX(1)
-*/