summaryrefslogtreecommitdiffstats
path: root/usr.bin/ar
diff options
context:
space:
mode:
authormarkm <markm@FreeBSD.org>2001-12-02 20:45:24 +0000
committermarkm <markm@FreeBSD.org>2001-12-02 20:45:24 +0000
commit3202164edc003152af9e92080b20b174e8259c53 (patch)
tree33ecfe88a578e9d6ad6997b740684957ecdcb200 /usr.bin/ar
parenta7016d6ca8de76e446db96f6f66969fa695fb423 (diff)
downloadFreeBSD-src-3202164edc003152af9e92080b20b174e8259c53.zip
FreeBSD-src-3202164edc003152af9e92080b20b174e8259c53.tar.gz
Use __FBSDID().
Diffstat (limited to 'usr.bin/ar')
-rw-r--r--usr.bin/ar/append.c4
-rw-r--r--usr.bin/ar/ar.c10
-rw-r--r--usr.bin/ar/archive.c8
-rw-r--r--usr.bin/ar/contents.c8
-rw-r--r--usr.bin/ar/delete.c6
-rw-r--r--usr.bin/ar/extract.c6
-rw-r--r--usr.bin/ar/misc.c8
-rw-r--r--usr.bin/ar/move.c6
-rw-r--r--usr.bin/ar/print.c6
-rw-r--r--usr.bin/ar/replace.c6
10 files changed, 50 insertions, 18 deletions
diff --git a/usr.bin/ar/append.c b/usr.bin/ar/append.c
index 58c06b5..151ae0a 100644
--- a/usr.bin/ar/append.c
+++ b/usr.bin/ar/append.c
@@ -34,6 +34,10 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+
+__FBSDID("$FreeBSD$");
+
#ifndef lint
static const char sccsid[] = "@(#)append.c 8.3 (Berkeley) 4/2/94";
#endif /* not lint */
diff --git a/usr.bin/ar/ar.c b/usr.bin/ar/ar.c
index dc38da2..f4bc76a 100644
--- a/usr.bin/ar/ar.c
+++ b/usr.bin/ar/ar.c
@@ -32,19 +32,21 @@
* 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.
- *
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+
+__FBSDID("$FreeBSD$");
+
#ifndef lint
static const char copyright[] =
"@(#) Copyright (c) 1990, 1993, 1994\n\
The Regents of the University of California. All rights reserved.\n";
-#endif /* not lint */
+#endif
#ifndef lint
static const char sccsid[] = "@(#)ar.c 8.3 (Berkeley) 4/2/94";
-#endif /* not lint */
+#endif
#include <sys/param.h>
diff --git a/usr.bin/ar/archive.c b/usr.bin/ar/archive.c
index e09cb67..e85695a 100644
--- a/usr.bin/ar/archive.c
+++ b/usr.bin/ar/archive.c
@@ -34,11 +34,13 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+
+__FBSDID("$FreeBSD$");
+
#ifndef lint
static const char sccsid[] = "@(#)archive.c 8.3 (Berkeley) 4/2/94";
-static const char rcsid[] =
- "$FreeBSD$";
-#endif /* not lint */
+#endif
#include <sys/param.h>
#include <sys/stat.h>
diff --git a/usr.bin/ar/contents.c b/usr.bin/ar/contents.c
index c92f2a7..6243984 100644
--- a/usr.bin/ar/contents.c
+++ b/usr.bin/ar/contents.c
@@ -32,13 +32,15 @@
* 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.
- *
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+
+__FBSDID("$FreeBSD$");
+
#ifndef lint
static const char sccsid[] = "@(#)contents.c 8.3 (Berkeley) 4/2/94";
-#endif /* not lint */
+#endif
#include <sys/param.h>
#include <sys/stat.h>
diff --git a/usr.bin/ar/delete.c b/usr.bin/ar/delete.c
index 152395b..7174845 100644
--- a/usr.bin/ar/delete.c
+++ b/usr.bin/ar/delete.c
@@ -34,9 +34,13 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+
+__FBSDID("$FreeBSD$");
+
#ifndef lint
static const char sccsid[] = "@(#)delete.c 8.3 (Berkeley) 4/2/94";
-#endif /* not lint */
+#endif
#include <sys/param.h>
#include <sys/stat.h>
diff --git a/usr.bin/ar/extract.c b/usr.bin/ar/extract.c
index 89503f3..36c31e3 100644
--- a/usr.bin/ar/extract.c
+++ b/usr.bin/ar/extract.c
@@ -34,9 +34,13 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+
+__FBSDID("$FreeBSD$");
+
#ifndef lint
static const char sccsid[] = "@(#)extract.c 8.3 (Berkeley) 4/2/94";
-#endif /* not lint */
+#endif
#include <sys/param.h>
#include <sys/time.h>
diff --git a/usr.bin/ar/misc.c b/usr.bin/ar/misc.c
index e61d7b8..5e76b19 100644
--- a/usr.bin/ar/misc.c
+++ b/usr.bin/ar/misc.c
@@ -34,11 +34,13 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+
+__FBSDID("$FreeBSD$");
+
#ifndef lint
static const char sccsid[] = "@(#)misc.c 8.3 (Berkeley) 4/2/94";
-static const char rcsid[] =
- "$FreeBSD$";
-#endif /* not lint */
+#endif
#include <sys/param.h>
diff --git a/usr.bin/ar/move.c b/usr.bin/ar/move.c
index 3450ab4..d416b8a 100644
--- a/usr.bin/ar/move.c
+++ b/usr.bin/ar/move.c
@@ -34,9 +34,13 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+
+__FBSDID("$FreeBSD$");
+
#ifndef lint
static const char sccsid[] = "@(#)move.c 8.3 (Berkeley) 4/2/94";
-#endif /* not lint */
+#endif
#include <sys/param.h>
#include <sys/stat.h>
diff --git a/usr.bin/ar/print.c b/usr.bin/ar/print.c
index accc2e4..6854cee 100644
--- a/usr.bin/ar/print.c
+++ b/usr.bin/ar/print.c
@@ -34,9 +34,13 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+
+__FBSDID("$FreeBSD$");
+
#ifndef lint
static const char sccsid[] = "@(#)print.c 8.3 (Berkeley) 4/2/94";
-#endif /* not lint */
+#endif
#include <sys/param.h>
diff --git a/usr.bin/ar/replace.c b/usr.bin/ar/replace.c
index 0cbffd7..e14be94 100644
--- a/usr.bin/ar/replace.c
+++ b/usr.bin/ar/replace.c
@@ -34,9 +34,13 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+
+__FBSDID("$FreeBSD$");
+
#ifndef lint
static const char sccsid[] = "@(#)replace.c 8.3 (Berkeley) 4/2/94";
-#endif /* not lint */
+#endif
#include <sys/param.h>
#include <sys/stat.h>
OpenPOWER on IntegriCloud