summaryrefslogtreecommitdiffstats
path: root/usr.sbin/pkg_install/lib
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2002-04-01 09:39:07 +0000
committerobrien <obrien@FreeBSD.org>2002-04-01 09:39:07 +0000
commit9b7ede4f37878ce4567a844259e9366c99f1973e (patch)
treed3e824d04d50287eea88a0c8070800e2ffc59b73 /usr.sbin/pkg_install/lib
parentabe18c89276c7e5efd57ef63215ce7ead9eb7578 (diff)
downloadFreeBSD-src-9b7ede4f37878ce4567a844259e9366c99f1973e.zip
FreeBSD-src-9b7ede4f37878ce4567a844259e9366c99f1973e.tar.gz
Fix SCM ID's.
Diffstat (limited to 'usr.sbin/pkg_install/lib')
-rw-r--r--usr.sbin/pkg_install/lib/deps.c8
-rw-r--r--usr.sbin/pkg_install/lib/exec.c8
-rw-r--r--usr.sbin/pkg_install/lib/file.c8
-rw-r--r--usr.sbin/pkg_install/lib/global.c8
-rw-r--r--usr.sbin/pkg_install/lib/match.c8
-rw-r--r--usr.sbin/pkg_install/lib/msg.c9
-rw-r--r--usr.sbin/pkg_install/lib/pen.c8
-rw-r--r--usr.sbin/pkg_install/lib/plist.c8
-rw-r--r--usr.sbin/pkg_install/lib/str.c8
-rw-r--r--usr.sbin/pkg_install/lib/version.c8
10 files changed, 30 insertions, 51 deletions
diff --git a/usr.sbin/pkg_install/lib/deps.c b/usr.sbin/pkg_install/lib/deps.c
index 04f42b3..2bda517 100644
--- a/usr.sbin/pkg_install/lib/deps.c
+++ b/usr.sbin/pkg_install/lib/deps.c
@@ -1,8 +1,3 @@
-#ifndef lint
-static const char rcsid[] =
- "$FreeBSD$";
-#endif
-
/*
* FreeBSD install - a package for the installation and maintainance
* of non-core utilities.
@@ -24,6 +19,9 @@ static const char rcsid[] =
*
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include "lib.h"
#include <err.h>
#include <stdio.h>
diff --git a/usr.sbin/pkg_install/lib/exec.c b/usr.sbin/pkg_install/lib/exec.c
index e4b477a..86285fb 100644
--- a/usr.sbin/pkg_install/lib/exec.c
+++ b/usr.sbin/pkg_install/lib/exec.c
@@ -1,8 +1,3 @@
-#ifndef lint
-static const char rcsid[] =
- "$FreeBSD$";
-#endif
-
/*
* FreeBSD install - a package for the installation and maintainance
* of non-core utilities.
@@ -23,6 +18,9 @@ static const char rcsid[] =
*
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include "lib.h"
#include <err.h>
diff --git a/usr.sbin/pkg_install/lib/file.c b/usr.sbin/pkg_install/lib/file.c
index 26b1f37..fabbc15 100644
--- a/usr.sbin/pkg_install/lib/file.c
+++ b/usr.sbin/pkg_install/lib/file.c
@@ -1,8 +1,3 @@
-#ifndef lint
-static const char rcsid[] =
- "$FreeBSD$";
-#endif
-
/*
* FreeBSD install - a package for the installation and maintainance
* of non-core utilities.
@@ -23,6 +18,9 @@ static const char rcsid[] =
*
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include "lib.h"
#include <err.h>
#include <fetch.h>
diff --git a/usr.sbin/pkg_install/lib/global.c b/usr.sbin/pkg_install/lib/global.c
index 513cf41..291f48b 100644
--- a/usr.sbin/pkg_install/lib/global.c
+++ b/usr.sbin/pkg_install/lib/global.c
@@ -1,8 +1,3 @@
-#ifndef lint
-static const char rcsid[] =
- "$FreeBSD$";
-#endif
-
/*
* FreeBSD install - a package for the installation and maintainance
* of non-core utilities.
@@ -24,6 +19,9 @@ static const char rcsid[] =
*
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include "lib.h"
/* These are global for all utils */
diff --git a/usr.sbin/pkg_install/lib/match.c b/usr.sbin/pkg_install/lib/match.c
index 7a273e0..90b6979 100644
--- a/usr.sbin/pkg_install/lib/match.c
+++ b/usr.sbin/pkg_install/lib/match.c
@@ -1,8 +1,3 @@
-#ifndef lint
-static const char rcsid[] =
- "$FreeBSD$";
-#endif
-
/*
* FreeBSD install - a package for the installation and maintainance
* of non-core utilities.
@@ -23,6 +18,9 @@ static const char rcsid[] =
*
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include "lib.h"
#include <err.h>
#include <fnmatch.h>
diff --git a/usr.sbin/pkg_install/lib/msg.c b/usr.sbin/pkg_install/lib/msg.c
index adff123..5b17624 100644
--- a/usr.sbin/pkg_install/lib/msg.c
+++ b/usr.sbin/pkg_install/lib/msg.c
@@ -1,8 +1,3 @@
-#ifndef lint
-static const char rcsid[] =
- "$FreeBSD$";
-#endif
-
/*
* FreeBSD install - a package for the installation and maintainance
* of non-core utilities.
@@ -17,13 +12,15 @@ static const char rcsid[] =
* documentation and/or other materials provided with the distribution.
*
* Jordan K. Hubbard
-
* 18 July 1993
*
* Miscellaneous message routines.
*
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include "lib.h"
#include <err.h>
#include <paths.h>
diff --git a/usr.sbin/pkg_install/lib/pen.c b/usr.sbin/pkg_install/lib/pen.c
index eae54ea..b76b4a6 100644
--- a/usr.sbin/pkg_install/lib/pen.c
+++ b/usr.sbin/pkg_install/lib/pen.c
@@ -1,8 +1,3 @@
-#ifndef lint
-static const char rcsid[] =
- "$FreeBSD$";
-#endif
-
/*
* FreeBSD install - a package for the installation and maintainance
* of non-core utilities.
@@ -23,6 +18,9 @@ static const char rcsid[] =
*
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include "lib.h"
#include <err.h>
#include <libgen.h>
diff --git a/usr.sbin/pkg_install/lib/plist.c b/usr.sbin/pkg_install/lib/plist.c
index 4e3fd46..c60e589 100644
--- a/usr.sbin/pkg_install/lib/plist.c
+++ b/usr.sbin/pkg_install/lib/plist.c
@@ -1,8 +1,3 @@
-#ifndef lint
-static const char rcsid[] =
- "$FreeBSD$";
-#endif
-
/*
* FreeBSD install - a package for the installation and maintainance
* of non-core utilities.
@@ -23,6 +18,9 @@ static const char rcsid[] =
*
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include "lib.h"
#include <err.h>
#include <md5.h>
diff --git a/usr.sbin/pkg_install/lib/str.c b/usr.sbin/pkg_install/lib/str.c
index c674e1f..8f6aec3 100644
--- a/usr.sbin/pkg_install/lib/str.c
+++ b/usr.sbin/pkg_install/lib/str.c
@@ -1,8 +1,3 @@
-#ifndef lint
-static const char rcsid[] =
- "$FreeBSD$";
-#endif
-
/*
* FreeBSD install - a package for the installation and maintainance
* of non-core utilities.
@@ -23,6 +18,9 @@ static const char rcsid[] =
*
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include "lib.h"
char *
diff --git a/usr.sbin/pkg_install/lib/version.c b/usr.sbin/pkg_install/lib/version.c
index 1348fe8..dca95cc 100644
--- a/usr.sbin/pkg_install/lib/version.c
+++ b/usr.sbin/pkg_install/lib/version.c
@@ -1,8 +1,3 @@
-#ifndef lint
-static const char rcsid[] =
- "$FreeBSD$";
-#endif
-
/*
* FreeBSD install - a package for the installation and maintainance
* of non-core utilities.
@@ -29,6 +24,9 @@ static const char rcsid[] =
*
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include "lib.h"
#include <err.h>
OpenPOWER on IntegriCloud