summaryrefslogtreecommitdiff
path: root/bin/ps
diff options
context:
space:
mode:
authorKen Smith <kensmith@FreeBSD.org>2010-03-21 01:30:13 +0000
committerKen Smith <kensmith@FreeBSD.org>2010-03-21 01:30:13 +0000
commit9c4d1c1956ecb0a222fb2f4579c320391fb67f06 (patch)
treea9ac9b0e0ce25e6b0acc0f247dc4572d56ecc496 /bin/ps
parent1c808b47a2787a3a6a6ee0ca2fffb39b8e17a29a (diff)
Diffstat (limited to 'bin/ps')
-rw-r--r--bin/ps/Makefile2
-rw-r--r--bin/ps/extern.h2
-rw-r--r--bin/ps/fmt.c2
-rw-r--r--bin/ps/keyword.c2
-rw-r--r--bin/ps/nlist.c2
-rw-r--r--bin/ps/print.c2
-rw-r--r--bin/ps/ps.12
-rw-r--r--bin/ps/ps.c2
-rw-r--r--bin/ps/ps.h2
9 files changed, 9 insertions, 9 deletions
diff --git a/bin/ps/Makefile b/bin/ps/Makefile
index 9be197933ee8..bb427ba6b698 100644
--- a/bin/ps/Makefile
+++ b/bin/ps/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/bin/ps/Makefile,v 1.27.24.1 2010/02/10 00:26:20 kensmith Exp $
# @(#)Makefile 8.1 (Berkeley) 6/2/93
PROG= ps
diff --git a/bin/ps/extern.h b/bin/ps/extern.h
index b93ecba1a51e..48084a90c195 100644
--- a/bin/ps/extern.h
+++ b/bin/ps/extern.h
@@ -27,7 +27,7 @@
* SUCH DAMAGE.
*
* @(#)extern.h 8.3 (Berkeley) 4/2/94
- * $FreeBSD$
+ * $FreeBSD: src/bin/ps/extern.h,v 1.37.18.1.2.1 2010/02/10 00:26:20 kensmith Exp $
*/
struct kinfo;
diff --git a/bin/ps/fmt.c b/bin/ps/fmt.c
index 1e9fed8710f0..6a62e448212b 100644
--- a/bin/ps/fmt.c
+++ b/bin/ps/fmt.c
@@ -34,7 +34,7 @@ static char sccsid[] = "@(#)fmt.c 8.4 (Berkeley) 4/15/94";
#endif
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/bin/ps/fmt.c,v 1.34.32.1 2010/02/10 00:26:20 kensmith Exp $");
#include <sys/types.h>
#include <sys/time.h>
diff --git a/bin/ps/keyword.c b/bin/ps/keyword.c
index 3b0c3585d9fa..1a28f9bbb588 100644
--- a/bin/ps/keyword.c
+++ b/bin/ps/keyword.c
@@ -33,7 +33,7 @@ static char sccsid[] = "@(#)keyword.c 8.5 (Berkeley) 4/2/94";
#endif /* not lint */
#endif
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/bin/ps/keyword.c,v 1.76.2.1.2.1 2010/02/10 00:26:20 kensmith Exp $");
#include <sys/param.h>
#include <sys/time.h>
diff --git a/bin/ps/nlist.c b/bin/ps/nlist.c
index f5e600b83959..06bca9ce2ec6 100644
--- a/bin/ps/nlist.c
+++ b/bin/ps/nlist.c
@@ -34,7 +34,7 @@ static char sccsid[] = "@(#)nlist.c 8.4 (Berkeley) 4/2/94";
#endif
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/bin/ps/nlist.c,v 1.21.32.1 2010/02/10 00:26:20 kensmith Exp $");
#include <sys/types.h>
#include <sys/sysctl.h>
diff --git a/bin/ps/print.c b/bin/ps/print.c
index 1326d4d1c3b1..f812a60775d7 100644
--- a/bin/ps/print.c
+++ b/bin/ps/print.c
@@ -34,7 +34,7 @@ static char sccsid[] = "@(#)print.c 8.6 (Berkeley) 4/16/94";
#endif
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/bin/ps/print.c,v 1.95.2.3.2.1 2010/02/10 00:26:20 kensmith Exp $");
#include <sys/param.h>
#include <sys/time.h>
diff --git a/bin/ps/ps.1 b/bin/ps/ps.1
index caccec5bdb1e..f39c16902ffe 100644
--- a/bin/ps/ps.1
+++ b/bin/ps/ps.1
@@ -27,7 +27,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)ps.1 8.3 (Berkeley) 4/18/94
-.\" $FreeBSD$
+.\" $FreeBSD: src/bin/ps/ps.1,v 1.89.2.1.2.1 2010/02/10 00:26:20 kensmith Exp $
.\"
.Dd May 16, 2009
.Dt PS 1
diff --git a/bin/ps/ps.c b/bin/ps/ps.c
index 1c6e5183ef5a..bd8139856ee0 100644
--- a/bin/ps/ps.c
+++ b/bin/ps/ps.c
@@ -47,7 +47,7 @@ static char sccsid[] = "@(#)ps.c 8.4 (Berkeley) 4/2/94";
#endif
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/bin/ps/ps.c,v 1.111.2.4.2.1 2010/02/10 00:26:20 kensmith Exp $");
#include <sys/param.h>
#include <sys/proc.h>
diff --git a/bin/ps/ps.h b/bin/ps/ps.h
index ddaebed53127..f48d10c39ce2 100644
--- a/bin/ps/ps.h
+++ b/bin/ps/ps.h
@@ -27,7 +27,7 @@
* SUCH DAMAGE.
*
* @(#)ps.h 8.1 (Berkeley) 5/31/93
- * $FreeBSD$
+ * $FreeBSD: src/bin/ps/ps.h,v 1.19.18.1.2.1 2010/02/10 00:26:20 kensmith Exp $
*/
#include <sys/queue.h>