aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2003-06-10 17:10:18 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2003-06-10 17:10:18 +0000
commita880eba3cfc0bb172a46bb7fc1b1b238233c3816 (patch)
treecc41bb96908346c52bbfc7903af8e9e90dfdaa43
parentf59584cd7f45da1aed72e454662a2a6628353f3e (diff)
downloadsrc-a880eba3cfc0bb172a46bb7fc1b1b238233c3816.tar.gz
src-a880eba3cfc0bb172a46bb7fc1b1b238233c3816.zip
Use __FBSDID().
Notes
Notes: svn path=/head/; revision=116159
-rw-r--r--sys/alpha/osf1/imgact_osf1.c5
-rw-r--r--sys/alpha/osf1/osf1_ioctl.c6
-rw-r--r--sys/alpha/osf1/osf1_misc.c5
-rw-r--r--sys/alpha/osf1/osf1_mount.c6
-rw-r--r--sys/alpha/osf1/osf1_signal.c5
-rw-r--r--sys/alpha/osf1/osf1_sysvec.c5
6 files changed, 17 insertions, 15 deletions
diff --git a/sys/alpha/osf1/imgact_osf1.c b/sys/alpha/osf1/imgact_osf1.c
index 2bb97b89df27..3bf9473a053d 100644
--- a/sys/alpha/osf1/imgact_osf1.c
+++ b/sys/alpha/osf1/imgact_osf1.c
@@ -29,10 +29,11 @@
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 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 <sys/malloc.h>
diff --git a/sys/alpha/osf1/osf1_ioctl.c b/sys/alpha/osf1/osf1_ioctl.c
index e4e230cf9e9e..cfc826eee26e 100644
--- a/sys/alpha/osf1/osf1_ioctl.c
+++ b/sys/alpha/osf1/osf1_ioctl.c
@@ -1,5 +1,4 @@
/* $NetBSD: osf1_ioctl.c,v 1.5 1996/10/13 00:46:53 christos Exp $ */
-
/*
* Copyright (c) 1994, 1995 Carnegie-Mellon University.
* All rights reserved.
@@ -26,12 +25,13 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*/
-
/*
* Additional Copyright (c) 1999 by Andrew Gallatin
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/fcntl.h>
diff --git a/sys/alpha/osf1/osf1_misc.c b/sys/alpha/osf1/osf1_misc.c
index 9232c9c5fb77..3c63adc3e1a0 100644
--- a/sys/alpha/osf1/osf1_misc.c
+++ b/sys/alpha/osf1/osf1_misc.c
@@ -1,5 +1,4 @@
/* $NetBSD: osf1_misc.c,v 1.14 1998/05/20 16:34:29 chs Exp $ */
-
/*
* Copyright (c) 1994, 1995 Carnegie-Mellon University.
* All rights reserved.
@@ -26,12 +25,12 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*/
-
/*
* Additional Copyright (c) 1999 by Andrew Gallatin
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/systm.h>
diff --git a/sys/alpha/osf1/osf1_mount.c b/sys/alpha/osf1/osf1_mount.c
index 913bdcc13585..aa0e787d7c38 100644
--- a/sys/alpha/osf1/osf1_mount.c
+++ b/sys/alpha/osf1/osf1_mount.c
@@ -1,5 +1,4 @@
/* $NetBSD: osf1_mount.c,v 1.7 1998/05/20 16:34:29 chs Exp $ */
-
/*
* Copyright (c) 1994, 1995 Carnegie-Mellon University.
* All rights reserved.
@@ -26,12 +25,13 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*/
-
/*
* Additional Copyright (c) 1999 by Andrew Gallatin
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include "opt_mac.h"
#include "opt_nfs.h"
diff --git a/sys/alpha/osf1/osf1_signal.c b/sys/alpha/osf1/osf1_signal.c
index 4ba7e86f849e..d318a559f8c2 100644
--- a/sys/alpha/osf1/osf1_signal.c
+++ b/sys/alpha/osf1/osf1_signal.c
@@ -1,6 +1,5 @@
/* $NetBSD: osf1_signal.c,v 1.4 1998/05/20 16:35:01 chs Exp $
*/
-
/*
* Copyright (c) 1998-1999 Andrew Gallatin
*
@@ -30,9 +29,11 @@
* (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 "opt_compat.h"
#ifndef COMPAT_43
#error "COMPAT_OSF1 requires COMPAT_43"
diff --git a/sys/alpha/osf1/osf1_sysvec.c b/sys/alpha/osf1/osf1_sysvec.c
index 7b216e0fd3ee..d11ceb6c6a62 100644
--- a/sys/alpha/osf1/osf1_sysvec.c
+++ b/sys/alpha/osf1/osf1_sysvec.c
@@ -27,10 +27,11 @@
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 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$");
+
/* XXX we use functions that might not exist. */
#include "opt_compat.h"