diff options
author | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-09-22 02:52:41 +0000 |
---|---|---|
committer | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-09-22 02:52:41 +0000 |
commit | 310cb43afb101eacc9588643530c41873cd7869a (patch) | |
tree | ba1df1897eef7f654781e15b48fb55c6918e9465 /miscutils/time.c | |
parent | 3eb65dbcebaa64597976d3b13c0777359dfdd7b0 (diff) | |
download | busybox-w32-310cb43afb101eacc9588643530c41873cd7869a.tar.gz busybox-w32-310cb43afb101eacc9588643530c41873cd7869a.tar.bz2 busybox-w32-310cb43afb101eacc9588643530c41873cd7869a.zip |
Change license statements (and clean up headers) on some of the files that
Erik or I are primary copyright holders on.
git-svn-id: svn://busybox.net/trunk/busybox@16175 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'miscutils/time.c')
-rw-r--r-- | miscutils/time.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/miscutils/time.c b/miscutils/time.c index 8c7419b58..3f1451c83 100644 --- a/miscutils/time.c +++ b/miscutils/time.c | |||
@@ -2,7 +2,7 @@ | |||
2 | /* `time' utility to display resource usage of processes. | 2 | /* `time' utility to display resource usage of processes. |
3 | Copyright (C) 1990, 91, 92, 93, 96 Free Software Foundation, Inc. | 3 | Copyright (C) 1990, 91, 92, 93, 96 Free Software Foundation, Inc. |
4 | 4 | ||
5 | Licensed under GPLv2 or later, see file LICENSE in this tarball for details. | 5 | Licensed under GPL version 2, see file LICENSE in this tarball for details. |
6 | */ | 6 | */ |
7 | /* Originally written by David Keppel <pardo@cs.washington.edu>. | 7 | /* Originally written by David Keppel <pardo@cs.washington.edu>. |
8 | Heavily modified by David MacKenzie <djm@gnu.ai.mit.edu>. | 8 | Heavily modified by David MacKenzie <djm@gnu.ai.mit.edu>. |
@@ -10,20 +10,8 @@ | |||
10 | */ | 10 | */ |
11 | 11 | ||
12 | #include "busybox.h" | 12 | #include "busybox.h" |
13 | #include <stdlib.h> | ||
14 | #include <stdio.h> | ||
15 | #include <signal.h> | ||
16 | #include <errno.h> | ||
17 | #include <getopt.h> | ||
18 | #include <string.h> | ||
19 | #include <limits.h> | ||
20 | #include <unistd.h> | ||
21 | #include <sys/types.h> /* For pid_t. */ | ||
22 | #include <sys/wait.h> | ||
23 | #include <sys/param.h> /* For getpagesize, maybe. */ | ||
24 | 13 | ||
25 | #define TV_MSEC tv_usec / 1000 | 14 | #define TV_MSEC tv_usec / 1000 |
26 | #include <sys/resource.h> | ||
27 | 15 | ||
28 | /* Information on the resources used by a child process. */ | 16 | /* Information on the resources used by a child process. */ |
29 | typedef struct { | 17 | typedef struct { |