summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordillon <dillon@FreeBSD.org>2001-09-30 21:16:57 +0000
committerdillon <dillon@FreeBSD.org>2001-09-30 21:16:57 +0000
commit4015450ecd836ac59fd79d156c449b874762e5f7 (patch)
tree83c7fb8042635adbae18ea03d5db7240206d0df6
parent29ab59ceb184bbbefd1bd0837befaab2e33d0ca7 (diff)
downloadFreeBSD-src-4015450ecd836ac59fd79d156c449b874762e5f7.zip
FreeBSD-src-4015450ecd836ac59fd79d156c449b874762e5f7.tar.gz
Add __FBSDID()s to libdisk
-rw-r--r--lib/libdisk/blocks.c6
-rw-r--r--lib/libdisk/change.c6
-rw-r--r--lib/libdisk/chunk.c6
-rw-r--r--lib/libdisk/create_chunk.c6
-rw-r--r--lib/libdisk/disk.c6
-rw-r--r--lib/libdisk/disklabel.c6
-rw-r--r--lib/libdisk/rules.c6
-rw-r--r--lib/libdisk/tst01.c6
-rw-r--r--lib/libdisk/write_disk.c6
9 files changed, 27 insertions, 27 deletions
diff --git a/lib/libdisk/blocks.c b/lib/libdisk/blocks.c
index 7e59d22..02f07cd 100644
--- a/lib/libdisk/blocks.c
+++ b/lib/libdisk/blocks.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 <stdio.h>
#include <stdlib.h>
#include <unistd.h>
diff --git a/lib/libdisk/change.c b/lib/libdisk/change.c
index 3c0dc54..0608c8b 100644
--- a/lib/libdisk/change.c
+++ b/lib/libdisk/change.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 <stdio.h>
#include <stdlib.h>
#include <unistd.h>
diff --git a/lib/libdisk/chunk.c b/lib/libdisk/chunk.c
index a28ebe7..83c247a 100644
--- a/lib/libdisk/chunk.c
+++ b/lib/libdisk/chunk.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 <stdio.h>
#include <stdlib.h>
#include <unistd.h>
diff --git a/lib/libdisk/create_chunk.c b/lib/libdisk/create_chunk.c
index 567bea4..46a9807 100644
--- a/lib/libdisk/create_chunk.c
+++ b/lib/libdisk/create_chunk.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 <stdio.h>
#include <stdlib.h>
#include <unistd.h>
diff --git a/lib/libdisk/disk.c b/lib/libdisk/disk.c
index 6900443..615fcd7 100644
--- a/lib/libdisk/disk.c
+++ b/lib/libdisk/disk.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 <stdio.h>
#include <stdlib.h>
#include <unistd.h>
diff --git a/lib/libdisk/disklabel.c b/lib/libdisk/disklabel.c
index 80bd848..00d7cf1 100644
--- a/lib/libdisk/disklabel.c
+++ b/lib/libdisk/disklabel.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 <stdio.h>
#include <stdlib.h>
#include <unistd.h>
diff --git a/lib/libdisk/rules.c b/lib/libdisk/rules.c
index f73f6eb..e4b10a1 100644
--- a/lib/libdisk/rules.c
+++ b/lib/libdisk/rules.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 <stdio.h>
#include <stdlib.h>
#include <unistd.h>
diff --git a/lib/libdisk/tst01.c b/lib/libdisk/tst01.c
index 6426f64..09f6c35 100644
--- a/lib/libdisk/tst01.c
+++ b/lib/libdisk/tst01.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 <stdio.h>
#include <stdlib.h>
#include <unistd.h>
diff --git a/lib/libdisk/write_disk.c b/lib/libdisk/write_disk.c
index 9f3c58b..3fe83bc 100644
--- a/lib/libdisk/write_disk.c
+++ b/lib/libdisk/write_disk.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 <stdio.h>
#include <stdlib.h>
#include <unistd.h>
OpenPOWER on IntegriCloud