aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/ps.c
diff options
context:
space:
mode:
Diffstat (limited to 'toys/posix/ps.c')
-rw-r--r--toys/posix/ps.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/toys/posix/ps.c b/toys/posix/ps.c
index 8d643576..76884c55 100644
--- a/toys/posix/ps.c
+++ b/toys/posix/ps.c
@@ -1341,14 +1341,6 @@ static int header_line(int line, int rev)
return line-1;
}
-static long long millitime(void)
-{
- struct timespec ts;
-
- clock_gettime(CLOCK_MONOTONIC, &ts);
- return ts.tv_sec*1000+ts.tv_nsec/1000000;
-}
-
static void top_common(
int (*filter)(long long *oslot, long long *nslot, int milis))
{