summaryrefslogtreecommitdiffstats
path: root/lib/libc/alpha
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2001-11-07 22:12:52 +0000
committerobrien <obrien@FreeBSD.org>2001-11-07 22:12:52 +0000
commitf1605e3295db00c5a9fc24dd1cffb82e788db0f1 (patch)
treea83cce25e0ebb0c5165fa833ca411fb8e91ad314 /lib/libc/alpha
parent7a13cb7c2f4be1f875a7dc5050ac54b31f3a7979 (diff)
downloadFreeBSD-src-f1605e3295db00c5a9fc24dd1cffb82e788db0f1.zip
FreeBSD-src-f1605e3295db00c5a9fc24dd1cffb82e788db0f1.tar.gz
Fix vendor ID's.
Diffstat (limited to 'lib/libc/alpha')
-rw-r--r--lib/libc/alpha/gen/flt_rounds.c8
-rw-r--r--lib/libc/alpha/gen/fpgetmask.c8
-rw-r--r--lib/libc/alpha/gen/fpgetround.c8
-rw-r--r--lib/libc/alpha/gen/fpgetsticky.c8
-rw-r--r--lib/libc/alpha/gen/fpsetmask.c8
-rw-r--r--lib/libc/alpha/gen/fpsetround.c8
-rw-r--r--lib/libc/alpha/gen/fpsetsticky.c8
-rw-r--r--lib/libc/alpha/gen/frexp.c8
-rw-r--r--lib/libc/alpha/gen/infinity.c8
-rw-r--r--lib/libc/alpha/gen/isinf.c8
-rw-r--r--lib/libc/alpha/gen/ldexp.c8
-rw-r--r--lib/libc/alpha/gen/modf.c8
12 files changed, 60 insertions, 36 deletions
diff --git a/lib/libc/alpha/gen/flt_rounds.c b/lib/libc/alpha/gen/flt_rounds.c
index b6246c9..a5181e3 100644
--- a/lib/libc/alpha/gen/flt_rounds.c
+++ b/lib/libc/alpha/gen/flt_rounds.c
@@ -1,6 +1,3 @@
-/* $FreeBSD$ */
-/* From: NetBSD: flt_rounds.c,v 1.2 1997/07/18 00:30:30 thorpej Exp */
-
/*
* Copyright (c) 1995 Christopher G. Demetriou
* All rights reserved.
@@ -30,8 +27,13 @@
* 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.
+ *
+ * $NetBSD: flt_rounds.c,v 1.2 1997/07/18 00:30:30 thorpej Exp $
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/types.h>
#include <machine/float.h>
diff --git a/lib/libc/alpha/gen/fpgetmask.c b/lib/libc/alpha/gen/fpgetmask.c
index 466ec21..5fbb13f 100644
--- a/lib/libc/alpha/gen/fpgetmask.c
+++ b/lib/libc/alpha/gen/fpgetmask.c
@@ -1,6 +1,3 @@
-/* $NetBSD: fpgetmask.c,v 1.1 1995/04/29 05:10:55 cgd Exp $ */
-/* $FreeBSD$ */
-
/*
* Copyright (c) 1995 Christopher G. Demetriou
* All rights reserved.
@@ -30,8 +27,13 @@
* 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.
+ *
+ * $NetBSD: fpgetmask.c,v 1.1 1995/04/29 05:10:55 cgd Exp $
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/types.h>
#include <ieeefp.h>
#include <machine/sysarch.h>
diff --git a/lib/libc/alpha/gen/fpgetround.c b/lib/libc/alpha/gen/fpgetround.c
index 551e65e..70de648 100644
--- a/lib/libc/alpha/gen/fpgetround.c
+++ b/lib/libc/alpha/gen/fpgetround.c
@@ -1,6 +1,3 @@
-/* $NetBSD: fpgetround.c,v 1.1 1995/04/29 05:09:55 cgd Exp $ */
-/* $FreeBSD$ */
-
/*
* Copyright (c) 1995 Christopher G. Demetriou
* All rights reserved.
@@ -30,8 +27,13 @@
* 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.
+ *
+ * $NetBSD: fpgetround.c,v 1.1 1995/04/29 05:09:55 cgd Exp $
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/types.h>
#include <ieeefp.h>
#include <machine/fpu.h>
diff --git a/lib/libc/alpha/gen/fpgetsticky.c b/lib/libc/alpha/gen/fpgetsticky.c
index c74eafd..2cca07d 100644
--- a/lib/libc/alpha/gen/fpgetsticky.c
+++ b/lib/libc/alpha/gen/fpgetsticky.c
@@ -1,6 +1,3 @@
-/* $NetBSD: fpgetsticky.c,v 1.1 1995/04/29 05:10:59 cgd Exp $ */
-/* $FreeBSD$ */
-
/*
* Copyright (c) 1995 Christopher G. Demetriou
* All rights reserved.
@@ -30,8 +27,13 @@
* 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.
+ *
+ * $NetBSD: fpgetsticky.c,v 1.1 1995/04/29 05:10:59 cgd Exp $
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/types.h>
#include <ieeefp.h>
#include <machine/fpu.h>
diff --git a/lib/libc/alpha/gen/fpsetmask.c b/lib/libc/alpha/gen/fpsetmask.c
index 72c3a54..28675b5 100644
--- a/lib/libc/alpha/gen/fpsetmask.c
+++ b/lib/libc/alpha/gen/fpsetmask.c
@@ -1,6 +1,3 @@
-/* $NetBSD: fpsetmask.c,v 1.1 1995/04/29 05:11:01 cgd Exp $ */
-/* $FreeBSD$ */
-
/*
* Copyright (c) 1995 Christopher G. Demetriou
* All rights reserved.
@@ -30,8 +27,13 @@
* 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.
+ *
+ * $NetBSD: fpsetmask.c,v 1.1 1995/04/29 05:11:01 cgd Exp $
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/types.h>
#include <ieeefp.h>
#include <machine/sysarch.h>
diff --git a/lib/libc/alpha/gen/fpsetround.c b/lib/libc/alpha/gen/fpsetround.c
index df924dd..627aca96 100644
--- a/lib/libc/alpha/gen/fpsetround.c
+++ b/lib/libc/alpha/gen/fpsetround.c
@@ -1,6 +1,3 @@
-/* $NetBSD: fpsetround.c,v 1.1 1995/04/29 05:09:57 cgd Exp $ */
-/* $FreeBSD$ */
-
/*
* Copyright (c) 1995 Christopher G. Demetriou
* All rights reserved.
@@ -30,8 +27,13 @@
* 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.
+ *
+ * $NetBSD: fpsetround.c,v 1.1 1995/04/29 05:09:57 cgd Exp $
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/types.h>
#include <ieeefp.h>
#include <machine/fpu.h>
diff --git a/lib/libc/alpha/gen/fpsetsticky.c b/lib/libc/alpha/gen/fpsetsticky.c
index 60807c1..02af77a 100644
--- a/lib/libc/alpha/gen/fpsetsticky.c
+++ b/lib/libc/alpha/gen/fpsetsticky.c
@@ -1,6 +1,3 @@
-/* $NetBSD: fpsetsticky.c,v 1.1 1995/04/29 05:11:04 cgd Exp $ */
-/* $FreeBSD$ */
-
/*
* Copyright (c) 1995 Christopher G. Demetriou
* All rights reserved.
@@ -30,8 +27,13 @@
* 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.
+ *
+ * $NetBSD: fpsetsticky.c,v 1.1 1995/04/29 05:11:04 cgd Exp $
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/types.h>
#include <ieeefp.h>
#include <machine/fpu.h>
diff --git a/lib/libc/alpha/gen/frexp.c b/lib/libc/alpha/gen/frexp.c
index 67bc444..386c36b 100644
--- a/lib/libc/alpha/gen/frexp.c
+++ b/lib/libc/alpha/gen/frexp.c
@@ -1,6 +1,3 @@
-/* $NetBSD: frexp.c,v 1.1 1995/02/10 17:50:22 cgd Exp $ */
-/* $FreeBSD$ */
-
/*
* Copyright (c) 1994, 1995 Carnegie-Mellon University.
* All rights reserved.
@@ -26,8 +23,13 @@
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
+ *
+ * $NetBSD: frexp.c,v 1.1 1995/02/10 17:50:22 cgd Exp $
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/types.h>
#include <machine/ieee.h>
#include <math.h>
diff --git a/lib/libc/alpha/gen/infinity.c b/lib/libc/alpha/gen/infinity.c
index be6ca8d..7cb5b80 100644
--- a/lib/libc/alpha/gen/infinity.c
+++ b/lib/libc/alpha/gen/infinity.c
@@ -1,6 +1,3 @@
-/* $NetBSD: infinity.c,v 1.1 1995/02/10 17:50:23 cgd Exp $ */
-/* $FreeBSD$ */
-
/*
* Copyright (c) 1994, 1995 Carnegie-Mellon University.
* All rights reserved.
@@ -26,8 +23,13 @@
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
+ *
+ * $NetBSD: infinity.c,v 1.1 1995/02/10 17:50:23 cgd Exp $
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <math.h>
/* bytes for +Infinity on an Alpha (IEEE double format) */
diff --git a/lib/libc/alpha/gen/isinf.c b/lib/libc/alpha/gen/isinf.c
index 239f2a0..3ebab1a 100644
--- a/lib/libc/alpha/gen/isinf.c
+++ b/lib/libc/alpha/gen/isinf.c
@@ -1,6 +1,3 @@
-/* $NetBSD: isinf.c,v 1.1 1995/02/10 17:50:23 cgd Exp $ */
-/* $FreeBSD$ */
-
/*
* Copyright (c) 1994, 1995 Carnegie-Mellon University.
* All rights reserved.
@@ -26,8 +23,13 @@
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
+ *
+ * $NetBSD: isinf.c,v 1.1 1995/02/10 17:50:23 cgd Exp $
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/types.h>
#include <machine/ieee.h>
#include <math.h>
diff --git a/lib/libc/alpha/gen/ldexp.c b/lib/libc/alpha/gen/ldexp.c
index f419a31..bbea4f6 100644
--- a/lib/libc/alpha/gen/ldexp.c
+++ b/lib/libc/alpha/gen/ldexp.c
@@ -1,6 +1,3 @@
-/* $NetBSD: ldexp.c,v 1.1 1995/02/10 17:50:24 cgd Exp $ */
-/* $FreeBSD$ */
-
/*
* Copyright (c) 1994, 1995 Carnegie-Mellon University.
* All rights reserved.
@@ -26,8 +23,13 @@
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
+ *
+ * $NetBSD: ldexp.c,v 1.1 1995/02/10 17:50:24 cgd Exp $
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/types.h>
#include <machine/ieee.h>
#include <errno.h>
diff --git a/lib/libc/alpha/gen/modf.c b/lib/libc/alpha/gen/modf.c
index 42c79cf..37786dc 100644
--- a/lib/libc/alpha/gen/modf.c
+++ b/lib/libc/alpha/gen/modf.c
@@ -1,6 +1,3 @@
-/* $NetBSD: modf.c,v 1.1 1995/02/10 17:50:25 cgd Exp $ */
-/* $FreeBSD$ */
-
/*
* Copyright (c) 1994, 1995 Carnegie-Mellon University.
* All rights reserved.
@@ -26,8 +23,13 @@
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
+ *
+ * $NetBSD: modf.c,v 1.1 1995/02/10 17:50:25 cgd Exp $
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/types.h>
#include <machine/ieee.h>
#include <errno.h>
OpenPOWER on IntegriCloud