summaryrefslogtreecommitdiffstats
path: root/libutil
diff options
context:
space:
mode:
authorMatthew Dillon <dillon@FreeBSD.org>2001-09-30 22:35:07 +0000
committerMatthew Dillon <dillon@FreeBSD.org>2001-09-30 22:35:07 +0000
commitf567d47c24feecab673e8da68f9dea5926fd78ca (patch)
treea9e4da4447ce23a62456f57cf3d7cc5940fa9659 /libutil
parent67a0ef27644ad3ae9cd0df362ed185d28e53bca5 (diff)
downloadpw-darwin-f567d47c24feecab673e8da68f9dea5926fd78ca.tar.gz
pw-darwin-f567d47c24feecab673e8da68f9dea5926fd78ca.tar.zst
pw-darwin-f567d47c24feecab673e8da68f9dea5926fd78ca.zip
Add __FBSDID()s to libutil
Diffstat (limited to 'libutil')
-rw-r--r--libutil/_secure_path.c4
-rw-r--r--libutil/login_cap.c5
-rw-r--r--libutil/login_crypt.c5
3 files changed, 8 insertions, 6 deletions
diff --git a/libutil/_secure_path.c b/libutil/_secure_path.c
index c27003c..5c6572d 100644
--- a/libutil/_secure_path.c
+++ b/libutil/_secure_path.c
@@ -17,10 +17,10 @@
* 4. Absolutely no warranty of function or purpose is made by the authors.
* 5. Modifications may be freely made to this file providing the above
* conditions are met.
- *
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#include <sys/types.h>
#include <sys/stat.h>
diff --git a/libutil/login_cap.c b/libutil/login_cap.c
index f841961..cb8aded 100644
--- a/libutil/login_cap.c
+++ b/libutil/login_cap.c
@@ -24,10 +24,11 @@
* conditions are met.
*
* Low-level routines relating to the user capabilities database
- *
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
diff --git a/libutil/login_crypt.c b/libutil/login_crypt.c
index e080ba9..f3d83a8 100644
--- a/libutil/login_crypt.c
+++ b/libutil/login_crypt.c
@@ -22,10 +22,11 @@
* 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$");
+
#include <sys/types.h>
#include <login_cap.h>