summaryrefslogtreecommitdiff
path: root/usr.bin/ar
diff options
context:
space:
mode:
authorKen Smith <kensmith@FreeBSD.org>2009-11-21 06:13:29 +0000
committerKen Smith <kensmith@FreeBSD.org>2009-11-21 06:13:29 +0000
commita4d3b78df842614c46b116fc5a6f470be637dccd (patch)
tree46c6b11aa0464ba59f49361bd26e1a86962c0624 /usr.bin/ar
parent59dd044d1cb744d3dba6b41c41e196b54e8fd9f8 (diff)
Diffstat (limited to 'usr.bin/ar')
-rw-r--r--usr.bin/ar/Makefile2
-rw-r--r--usr.bin/ar/acplex.l2
-rw-r--r--usr.bin/ar/acpyacc.y2
-rw-r--r--usr.bin/ar/ar.12
-rw-r--r--usr.bin/ar/ar.c2
-rw-r--r--usr.bin/ar/ar.h2
-rw-r--r--usr.bin/ar/read.c2
-rw-r--r--usr.bin/ar/util.c2
-rw-r--r--usr.bin/ar/write.c2
9 files changed, 9 insertions, 9 deletions
diff --git a/usr.bin/ar/Makefile b/usr.bin/ar/Makefile
index 533f9317d02f..a26415222e04 100644
--- a/usr.bin/ar/Makefile
+++ b/usr.bin/ar/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/usr.bin/ar/Makefile,v 1.22.2.1.2.1 2009/10/25 01:10:29 kensmith Exp $
PROG= ar
SRCS= ar.c acplex.l acpyacc.y read.c util.c write.c y.tab.h
diff --git a/usr.bin/ar/acplex.l b/usr.bin/ar/acplex.l
index 3186d170ced2..185fbed38362 100644
--- a/usr.bin/ar/acplex.l
+++ b/usr.bin/ar/acplex.l
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/ar/acplex.l,v 1.1.2.1.2.1 2009/10/25 01:10:29 kensmith Exp $");
#include <err.h>
#include <errno.h>
diff --git a/usr.bin/ar/acpyacc.y b/usr.bin/ar/acpyacc.y
index bc25b628c68f..2817d00980b8 100644
--- a/usr.bin/ar/acpyacc.y
+++ b/usr.bin/ar/acpyacc.y
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/ar/acpyacc.y,v 1.1.2.1.2.1 2009/10/25 01:10:29 kensmith Exp $");
#include <sys/mman.h>
#include <sys/param.h>
diff --git a/usr.bin/ar/ar.1 b/usr.bin/ar/ar.1
index cb9414e4b7b2..0bb5b3eecb76 100644
--- a/usr.bin/ar/ar.1
+++ b/usr.bin/ar/ar.1
@@ -21,7 +21,7 @@
.\" out of the use of this software, even if advised of the possibility of
.\" such damage.
.\"
-.\" $FreeBSD$
+.\" $FreeBSD: src/usr.bin/ar/ar.1,v 1.20.2.1.2.1 2009/10/25 01:10:29 kensmith Exp $
.\"
.Dd August 31, 2007
.Os
diff --git a/usr.bin/ar/ar.c b/usr.bin/ar/ar.c
index 35a0380e3653..687dbd3f4bcf 100644
--- a/usr.bin/ar/ar.c
+++ b/usr.bin/ar/ar.c
@@ -59,7 +59,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/ar/ar.c,v 1.20.2.1.2.1 2009/10/25 01:10:29 kensmith Exp $");
#include <sys/queue.h>
#include <sys/types.h>
diff --git a/usr.bin/ar/ar.h b/usr.bin/ar/ar.h
index 111f944a83e3..71beafd1f4fd 100644
--- a/usr.bin/ar/ar.h
+++ b/usr.bin/ar/ar.h
@@ -23,7 +23,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/ar/ar.h,v 1.4.2.1.2.1 2009/10/25 01:10:29 kensmith Exp $
*/
#define BSDAR_VERSION "1.1.0"
diff --git a/usr.bin/ar/read.c b/usr.bin/ar/read.c
index a9e2ed103193..206a70dc34d2 100644
--- a/usr.bin/ar/read.c
+++ b/usr.bin/ar/read.c
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/ar/read.c,v 1.1.2.1.2.1 2009/10/25 01:10:29 kensmith Exp $");
#include <sys/queue.h>
#include <sys/stat.h>
diff --git a/usr.bin/ar/util.c b/usr.bin/ar/util.c
index e1230e330134..0111e7709a94 100644
--- a/usr.bin/ar/util.c
+++ b/usr.bin/ar/util.c
@@ -25,7 +25,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/ar/util.c,v 1.1.2.1.2.1 2009/10/25 01:10:29 kensmith Exp $");
#include <sys/queue.h>
#include <sys/types.h>
diff --git a/usr.bin/ar/write.c b/usr.bin/ar/write.c
index 3d4f93d9abc5..d3064a69d85e 100644
--- a/usr.bin/ar/write.c
+++ b/usr.bin/ar/write.c
@@ -25,7 +25,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/ar/write.c,v 1.6.2.1.2.1 2009/10/25 01:10:29 kensmith Exp $");
#include <sys/endian.h>
#include <sys/mman.h>