summaryrefslogtreecommitdiff
path: root/usr.bin/ar
diff options
context:
space:
mode:
authorKen Smith <kensmith@FreeBSD.org>2011-02-16 16:18:46 +0000
committerKen Smith <kensmith@FreeBSD.org>2011-02-16 16:18:46 +0000
commitdec99dafe5763ba1db6950342aa80a634169c083 (patch)
tree1bd9f5a688ac947b00e690c3c69ccb8df203768d /usr.bin/ar
parent045f17e533c0209bbcddcccbbb0192d61ffd6c9c (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 b0c5044c9878..c47fdb662014 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.2.2.1 2010/12/21 17:09:25 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..8e88c429d951 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.6.1 2010/12/21 17:09:25 kensmith Exp $");
#include <err.h>
#include <errno.h>
diff --git a/usr.bin/ar/acpyacc.y b/usr.bin/ar/acpyacc.y
index bc25b628c68f..c27c4ef9db8a 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.6.1 2010/12/21 17:09:25 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 743cab2ead89..485cc70438a4 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.3.2.1 2010/12/21 17:09:25 kensmith Exp $
.\"
.Dd August 31, 2007
.Dt AR 1
diff --git a/usr.bin/ar/ar.c b/usr.bin/ar/ar.c
index 35a0380e3653..51d97fdf571f 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.6.1 2010/12/21 17:09:25 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..80774e77eb1f 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.6.1 2010/12/21 17:09:25 kensmith Exp $
*/
#define BSDAR_VERSION "1.1.0"
diff --git a/usr.bin/ar/read.c b/usr.bin/ar/read.c
index a9e2ed103193..00940a518b5d 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.6.1 2010/12/21 17:09:25 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..6bf50671ec8f 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.6.1 2010/12/21 17:09:25 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..7f449978764e 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.6.1 2010/12/21 17:09:25 kensmith Exp $");
#include <sys/endian.h>
#include <sys/mman.h>