aboutsummaryrefslogtreecommitdiff
path: root/lib/libmd
diff options
context:
space:
mode:
authorMatthew Dillon <dillon@FreeBSD.org>2001-09-30 21:56:22 +0000
committerMatthew Dillon <dillon@FreeBSD.org>2001-09-30 21:56:22 +0000
commit5d946b40c380481be0713de3066a729eefa2eba1 (patch)
treeafe8c3e82d2b944ae6e09863b3f988a41724980d /lib/libmd
parent65c67357645348a86768e91aee8946c05415e2e1 (diff)
Notes
Diffstat (limited to 'lib/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 8e0b814f22029..dac9c10c3afb7 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 a51c73965921b..528c42bff4b5b 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 6828b9b317eb0..79d9f49236d3f 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 247160c7569ed..bd502dd3bb02a 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 e58473c840edb..c12c5fb5b9905 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 c31f9cd242af9..5fe2486781477 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 4278a0f3915cc..29084a962b6e8 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 19c2728b2d3d3..6d115eaa52b41 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 660cff9db1141..dc445e82175ae 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 454fac8a810d5..4dd9078ddb4c2 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.