diff options
author | dg <dg@FreeBSD.org> | 1994-09-24 02:59:15 +0000 |
---|---|---|
committer | dg <dg@FreeBSD.org> | 1994-09-24 02:59:15 +0000 |
commit | 8722740e7f163b275491a0b05c8640341b937558 (patch) | |
tree | b7c3f7bad4381fe5b507b6cf1947fd57803fe125 /bin/ps | |
parent | 111d145dc40797c8894e8aa7dc6632e33bce87bf (diff) | |
download | FreeBSD-src-8722740e7f163b275491a0b05c8640341b937558.zip FreeBSD-src-8722740e7f163b275491a0b05c8640341b937558.tar.gz |
Added $Id$
Diffstat (limited to 'bin/ps')
-rw-r--r-- | bin/ps/Makefile | 1 | ||||
-rw-r--r-- | bin/ps/devname.c | 2 | ||||
-rw-r--r-- | bin/ps/extern.h | 1 | ||||
-rw-r--r-- | bin/ps/fmt.c | 2 | ||||
-rw-r--r-- | bin/ps/keyword.c | 2 | ||||
-rw-r--r-- | bin/ps/nlist.c | 2 | ||||
-rw-r--r-- | bin/ps/print.c | 2 | ||||
-rw-r--r-- | bin/ps/ps.1 | 1 | ||||
-rw-r--r-- | bin/ps/ps.c | 2 | ||||
-rw-r--r-- | bin/ps/ps.h | 1 |
10 files changed, 16 insertions, 0 deletions
diff --git a/bin/ps/Makefile b/bin/ps/Makefile index 42c3c69..1d1e551 100644 --- a/bin/ps/Makefile +++ b/bin/ps/Makefile @@ -1,4 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 6/2/93 +# $Id$ PROG= ps SRCS= fmt.c keyword.c nlist.c print.c ps.c diff --git a/bin/ps/devname.c b/bin/ps/devname.c index df94b91..0aedb2b 100644 --- a/bin/ps/devname.c +++ b/bin/ps/devname.c @@ -29,6 +29,8 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ #if defined(LIBC_SCCS) && !defined(lint) diff --git a/bin/ps/extern.h b/bin/ps/extern.h index a23f3ec..173ddf3 100644 --- a/bin/ps/extern.h +++ b/bin/ps/extern.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)extern.h 8.3 (Berkeley) 4/2/94 + * $Id$ */ struct kinfo; diff --git a/bin/ps/fmt.c b/bin/ps/fmt.c index a48c887..59b9919 100644 --- a/bin/ps/fmt.c +++ b/bin/ps/fmt.c @@ -29,6 +29,8 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ #ifndef lint diff --git a/bin/ps/keyword.c b/bin/ps/keyword.c index d69e0b7..e0c5032 100644 --- a/bin/ps/keyword.c +++ b/bin/ps/keyword.c @@ -29,6 +29,8 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ #ifndef lint diff --git a/bin/ps/nlist.c b/bin/ps/nlist.c index 11199ca..145536e 100644 --- a/bin/ps/nlist.c +++ b/bin/ps/nlist.c @@ -29,6 +29,8 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ #ifndef lint diff --git a/bin/ps/print.c b/bin/ps/print.c index 1208efa..073bc0e 100644 --- a/bin/ps/print.c +++ b/bin/ps/print.c @@ -29,6 +29,8 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ #ifndef lint diff --git a/bin/ps/ps.1 b/bin/ps/ps.1 index c521311..0c73e17 100644 --- a/bin/ps/ps.1 +++ b/bin/ps/ps.1 @@ -30,6 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)ps.1 8.3 (Berkeley) 4/18/94 +.\" $Id$ .\" .Dd April 18, 1994 .Dt PS 1 diff --git a/bin/ps/ps.c b/bin/ps/ps.c index 06d1d5f..6bb03aa 100644 --- a/bin/ps/ps.c +++ b/bin/ps/ps.c @@ -29,6 +29,8 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ #ifndef lint diff --git a/bin/ps/ps.h b/bin/ps/ps.h index fe2513e..d1b8433 100644 --- a/bin/ps/ps.h +++ b/bin/ps/ps.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)ps.h 8.1 (Berkeley) 5/31/93 + * $Id$ */ #define UNLIMITED 0 /* unlimited terminal width */ |