summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordillon <dillon@FreeBSD.org>2001-09-30 21:56:22 +0000
committerdillon <dillon@FreeBSD.org>2001-09-30 21:56:22 +0000
commited504fcccb4a1850d2d10eb64257b3d1e23da159 (patch)
treeafe8c3e82d2b944ae6e09863b3f988a41724980d
parentf844085713fa5e8c5e9206da521f47e8cc6e1833 (diff)
downloadFreeBSD-src-ed504fcccb4a1850d2d10eb64257b3d1e23da159.zip
FreeBSD-src-ed504fcccb4a1850d2d10eb64257b3d1e23da159.tar.gz
add __FBSDID()s to libmd
-rw-r--r--lib/libmd/md2c.c4
-rw-r--r--lib/libmd/md4c.c4
-rw-r--r--lib/libmd/md5c.c5
-rw-r--r--lib/libmd/mdXhl.c6
-rw-r--r--lib/libmd/mddriver.c4
-rw-r--r--lib/libmd/rmd160c.c5
-rw-r--r--lib/libmd/rmddriver.c4
-rw-r--r--lib/libmd/sha0c.c5
-rw-r--r--lib/libmd/sha1c.c3
-rw-r--r--lib/libmd/shadriver.c4
10 files changed, 30 insertions, 14 deletions
diff --git a/lib/libmd/md2c.c b/lib/libmd/md2c.c
index 8e0b814..dac9c10 100644
--- a/lib/libmd/md2c.c
+++ b/lib/libmd/md2c.c
@@ -1,7 +1,9 @@
/* MD2C.C - RSA Data Security, Inc., MD2 message-digest algorithm
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/* Copyright (C) 1990-2, RSA Data Security, Inc. Created 1990. All
rights reserved.
diff --git a/lib/libmd/md4c.c b/lib/libmd/md4c.c
index a51c739..528c42b 100644
--- a/lib/libmd/md4c.c
+++ b/lib/libmd/md4c.c
@@ -1,7 +1,9 @@
/* MD4C.C - RSA Data Security, Inc., MD4 message-digest algorithm
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/* Copyright (C) 1990-2, RSA Data Security, Inc. All rights reserved.
License to copy and use this software is granted provided that it
diff --git a/lib/libmd/md5c.c b/lib/libmd/md5c.c
index 6828b9b..79d9f49 100644
--- a/lib/libmd/md5c.c
+++ b/lib/libmd/md5c.c
@@ -22,12 +22,13 @@
* These notices must be retained in any copies of any part of this
* documentation and/or software.
*
- * $FreeBSD$
- *
* This code is the same as the code published by RSA Inc. It has been
* edited for clarity and style only.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/types.h>
#ifdef _KERNEL
diff --git a/lib/libmd/mdXhl.c b/lib/libmd/mdXhl.c
index 247160c..bd502dd 100644
--- a/lib/libmd/mdXhl.c
+++ b/lib/libmd/mdXhl.c
@@ -5,11 +5,11 @@
* can do whatever you want with this stuff. If we meet some day, and you think
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
* ----------------------------------------------------------------------------
- *
- * $FreeBSD$
- *
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
diff --git a/lib/libmd/mddriver.c b/lib/libmd/mddriver.c
index e58473c..c12c5fb 100644
--- a/lib/libmd/mddriver.c
+++ b/lib/libmd/mddriver.c
@@ -1,7 +1,9 @@
/* MDDRIVER.C - test driver for MD2, MD4 and MD5
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/* Copyright (C) 1990-2, RSA Data Security, Inc. Created 1990. All
rights reserved.
diff --git a/lib/libmd/rmd160c.c b/lib/libmd/rmd160c.c
index c31f9cd..5fe2486 100644
--- a/lib/libmd/rmd160c.c
+++ b/lib/libmd/rmd160c.c
@@ -54,10 +54,11 @@
* derivative of this code cannot be changed. i.e. this code cannot simply be
* copied and put under another distribution licence
* [including the GNU Public Licence.]
- *
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/types.h>
#include <stdio.h>
diff --git a/lib/libmd/rmddriver.c b/lib/libmd/rmddriver.c
index 4278a0f..29084a9 100644
--- a/lib/libmd/rmddriver.c
+++ b/lib/libmd/rmddriver.c
@@ -1,7 +1,9 @@
/* RIPEMD160DRIVER.C - test driver for RIPEMD160
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/* Copyright (C) 1990-2, RSA Data Security, Inc. Created 1990. All
rights reserved.
diff --git a/lib/libmd/sha0c.c b/lib/libmd/sha0c.c
index 19c2728..6d115ea 100644
--- a/lib/libmd/sha0c.c
+++ b/lib/libmd/sha0c.c
@@ -54,10 +54,11 @@
* derivative of this code cannot be changed. i.e. this code cannot simply be
* copied and put under another distribution licence
* [including the GNU Public Licence.]
- *
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/types.h>
#include <stdio.h>
diff --git a/lib/libmd/sha1c.c b/lib/libmd/sha1c.c
index 660cff9..dc445e8 100644
--- a/lib/libmd/sha1c.c
+++ b/lib/libmd/sha1c.c
@@ -56,6 +56,9 @@
* [including the GNU Public Licence.]
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/types.h>
#include <stdio.h>
diff --git a/lib/libmd/shadriver.c b/lib/libmd/shadriver.c
index 454fac8..4dd9078 100644
--- a/lib/libmd/shadriver.c
+++ b/lib/libmd/shadriver.c
@@ -1,7 +1,9 @@
/* SHADRIVER.C - test driver for SHA-1 (and SHA-0)
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/* Copyright (C) 1990-2, RSA Data Security, Inc. Created 1990. All
rights reserved.
OpenPOWER on IntegriCloud