diff options
author | Rob Landley <rob@landley.net> | 2018-01-06 15:43:17 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2018-01-06 15:43:17 -0600 |
commit | b432aee484bfca4d53cdce13343e6ee5c850d0f3 (patch) | |
tree | 0edd004bb051adf96aee91893e44324a784871ce /toys/posix | |
parent | 73690e9ebb24868a996567fdbe523ddc0a3c1415 (diff) | |
download | toybox-b432aee484bfca4d53cdce13343e6ee5c850d0f3.tar.gz |
Move millitime() into lib.c.
Diffstat (limited to 'toys/posix')
-rw-r--r-- | toys/posix/ps.c | 8 |
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)) { |