aboutsummaryrefslogtreecommitdiff
path: root/sys/gnu/i386/fpemul
diff options
context:
space:
mode:
authorRich Murphey <rich@FreeBSD.org>1994-06-10 07:45:04 +0000
committerRich Murphey <rich@FreeBSD.org>1994-06-10 07:45:04 +0000
commitb95c0fbacd332f66e865cd655a490a4bcb4fbe91 (patch)
treedf74a7663538d5bdc82f138f691dfbea1227dfbd /sys/gnu/i386/fpemul
parentc1717893591d699ef8534d8102e369292a9e02fe (diff)
downloadsrc-b95c0fbacd332f66e865cd655a490a4bcb4fbe91.tar.gz
src-b95c0fbacd332f66e865cd655a490a4bcb4fbe91.zip
Copyright changes per the author.
Added specific permissions for redistribution with FreeBSD and NetBSD. Fixed author's email address.
Notes
Notes: svn path=/head/; revision=1699
Diffstat (limited to 'sys/gnu/i386/fpemul')
-rw-r--r--sys/gnu/i386/fpemul/README20
-rw-r--r--sys/gnu/i386/fpemul/control_w.h22
-rw-r--r--sys/gnu/i386/fpemul/div_small.s22
-rw-r--r--sys/gnu/i386/fpemul/errors.c22
-rw-r--r--sys/gnu/i386/fpemul/exception.h22
-rw-r--r--sys/gnu/i386/fpemul/fpu_arith.c22
-rw-r--r--sys/gnu/i386/fpemul/fpu_asm.h22
-rw-r--r--sys/gnu/i386/fpemul/fpu_aux.c22
-rw-r--r--sys/gnu/i386/fpemul/fpu_emu.h22
-rw-r--r--sys/gnu/i386/fpemul/fpu_entry.c43
-rw-r--r--sys/gnu/i386/fpemul/fpu_etc.c22
-rw-r--r--sys/gnu/i386/fpemul/fpu_system.h22
-rw-r--r--sys/gnu/i386/fpemul/fpu_trig.c22
-rw-r--r--sys/gnu/i386/fpemul/get_address.c22
-rw-r--r--sys/gnu/i386/fpemul/load_store.c22
-rw-r--r--sys/gnu/i386/fpemul/poly_2xm1.c22
-rw-r--r--sys/gnu/i386/fpemul/poly_atan.c22
-rw-r--r--sys/gnu/i386/fpemul/poly_div.s22
-rw-r--r--sys/gnu/i386/fpemul/poly_l2.c22
-rw-r--r--sys/gnu/i386/fpemul/poly_mul64.s22
-rw-r--r--sys/gnu/i386/fpemul/poly_sin.c22
-rw-r--r--sys/gnu/i386/fpemul/poly_tan.c22
-rw-r--r--sys/gnu/i386/fpemul/polynomial.s22
-rw-r--r--sys/gnu/i386/fpemul/reg_add_sub.c22
-rw-r--r--sys/gnu/i386/fpemul/reg_compare.c22
-rw-r--r--sys/gnu/i386/fpemul/reg_constant.c20
-rw-r--r--sys/gnu/i386/fpemul/reg_constant.h22
-rw-r--r--sys/gnu/i386/fpemul/reg_div.s22
-rw-r--r--sys/gnu/i386/fpemul/reg_ld_str.c22
-rw-r--r--sys/gnu/i386/fpemul/reg_mul.c22
-rw-r--r--sys/gnu/i386/fpemul/reg_norm.s22
-rw-r--r--sys/gnu/i386/fpemul/reg_round.s22
-rw-r--r--sys/gnu/i386/fpemul/reg_u_add.s22
-rw-r--r--sys/gnu/i386/fpemul/reg_u_div.s22
-rw-r--r--sys/gnu/i386/fpemul/reg_u_mul.s22
-rw-r--r--sys/gnu/i386/fpemul/reg_u_sub.s22
-rw-r--r--sys/gnu/i386/fpemul/status_w.h22
-rw-r--r--sys/gnu/i386/fpemul/version.h22
-rw-r--r--sys/gnu/i386/fpemul/wm_shrx.s22
-rw-r--r--sys/gnu/i386/fpemul/wm_sqrt.s22
40 files changed, 634 insertions, 263 deletions
diff --git a/sys/gnu/i386/fpemul/README b/sys/gnu/i386/fpemul/README
index 4982c35f1033..0cef6c456fc7 100644
--- a/sys/gnu/i386/fpemul/README
+++ b/sys/gnu/i386/fpemul/README
@@ -2,15 +2,15 @@
* wm-FPU-emu an FPU emulator for 80386 and 80486SX microprocessors.
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -43,6 +43,16 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
+ *
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
*/
wm-FPU-emu is an FPU emulator for Linux. It is derived from wm-emu387
diff --git a/sys/gnu/i386/fpemul/control_w.h b/sys/gnu/i386/fpemul/control_w.h
index ac3e0f4fd614..d7ede076124f 100644
--- a/sys/gnu/i386/fpemul/control_w.h
+++ b/sys/gnu/i386/fpemul/control_w.h
@@ -2,15 +2,15 @@
* control_w.h
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -44,7 +44,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: control_w.h,v 1.2 1994/04/29 21:02:30 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/div_small.s b/sys/gnu/i386/fpemul/div_small.s
index 0b3a7b9768c1..d25313b3792c 100644
--- a/sys/gnu/i386/fpemul/div_small.s
+++ b/sys/gnu/i386/fpemul/div_small.s
@@ -5,15 +5,15 @@
* Divide a 64 bit integer by a 32 bit integer & return remainder.
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -46,8 +46,18 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
+ *
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
*
- * $Id:$
+ * $Id: div_small.s,v 1.2 1994/04/29 21:07:11 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/errors.c b/sys/gnu/i386/fpemul/errors.c
index 69782af7bbc8..f9f6eb1a0ff5 100644
--- a/sys/gnu/i386/fpemul/errors.c
+++ b/sys/gnu/i386/fpemul/errors.c
@@ -4,15 +4,15 @@
* The error handling functions for wm-FPU-emu
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -46,7 +46,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: errors.c,v 1.2 1994/04/29 21:07:12 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/exception.h b/sys/gnu/i386/fpemul/exception.h
index a48769d71525..11f9d02160d8 100644
--- a/sys/gnu/i386/fpemul/exception.h
+++ b/sys/gnu/i386/fpemul/exception.h
@@ -2,15 +2,15 @@
* exception.h
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -44,7 +44,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: exception.h,v 1.2 1994/04/29 21:07:13 gclarkii Exp $
*
*
*/
diff --git a/sys/gnu/i386/fpemul/fpu_arith.c b/sys/gnu/i386/fpemul/fpu_arith.c
index 4ed9e1dbfaf0..a1da514d1fe3 100644
--- a/sys/gnu/i386/fpemul/fpu_arith.c
+++ b/sys/gnu/i386/fpemul/fpu_arith.c
@@ -4,15 +4,15 @@
* Code to implement the FPU register/register arithmetic instructions
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -46,7 +46,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: fpu_arith.c,v 1.2 1994/04/29 21:07:14 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/fpu_asm.h b/sys/gnu/i386/fpemul/fpu_asm.h
index a13035fb1b68..e618c04e1f35 100644
--- a/sys/gnu/i386/fpemul/fpu_asm.h
+++ b/sys/gnu/i386/fpemul/fpu_asm.h
@@ -2,15 +2,15 @@
* fpu_asm.h
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -44,7 +44,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: fpu_asm.h,v 1.2 1994/04/29 21:07:14 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/fpu_aux.c b/sys/gnu/i386/fpemul/fpu_aux.c
index 93f288b8fcaa..629e45a79472 100644
--- a/sys/gnu/i386/fpemul/fpu_aux.c
+++ b/sys/gnu/i386/fpemul/fpu_aux.c
@@ -4,15 +4,15 @@
* Code to implement some of the FPU auxiliary instructions.
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -46,7 +46,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: fpu_aux.c,v 1.2 1994/04/29 21:16:19 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/fpu_emu.h b/sys/gnu/i386/fpemul/fpu_emu.h
index 7e2061171d4d..b62a9cf89476 100644
--- a/sys/gnu/i386/fpemul/fpu_emu.h
+++ b/sys/gnu/i386/fpemul/fpu_emu.h
@@ -2,15 +2,15 @@
* fpu_emu.h
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -44,7 +44,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: fpu_emu.h,v 1.2 1994/04/29 21:16:20 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/fpu_entry.c b/sys/gnu/i386/fpemul/fpu_entry.c
index 31dfcdfe844b..7b417329832d 100644
--- a/sys/gnu/i386/fpemul/fpu_entry.c
+++ b/sys/gnu/i386/fpemul/fpu_entry.c
@@ -4,15 +4,15 @@
* The entry function for wm-FPU-emu
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -46,35 +46,16 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * The purpose of the copyright is to ensure that the covered software
- * remains freely available to everyone. It is felt to be necessary to
- * try and prevent the software being taken by unscrupulous people and
- * (perhaps after modification) being copyrighted or otherwise
- * restricted and being made no longer freely available. There are a
- * number of examples of corporations hijacking ideas and trying to
- * sue the pants of lesser financed entities who try to subsequently
- * use the ideas.
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
*
- * If the software were placed in the public domain then there would
- * be no protection at all. By claiming a copyright it puts at least a
- * strong moral pressure on the greedy to restrain themselves and
- * behave ethically. And let's not be naive, we are all subject to the
- * emotion of greed to some extent...
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
*
- * Up until now, the software has been covered by the GNU copyleft.
- * That copyright mechanism has problems for operating systems which
- * are not themselves covered by the GNU copyleft. Hence I have
- * decided to allow the covered software to be used with 386BSD under
- * restrictions which are meant to be broadly similar, but not
- * identical, to those which already cover the 386BSD operating
- * system.
+ * W. Metzenthen June 1994.
*
- * The software, in its form for the Linux operating system, remains
- * available under the terms of the GNU copyleft.
- *
- * W. Metzenthen June 1993.
- *
- * $Id:$
+ * $Id: fpu_entry.c,v 1.2 1994/04/29 21:16:21 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/fpu_etc.c b/sys/gnu/i386/fpemul/fpu_etc.c
index f041b43c6220..936e39a8b8bb 100644
--- a/sys/gnu/i386/fpemul/fpu_etc.c
+++ b/sys/gnu/i386/fpemul/fpu_etc.c
@@ -4,15 +4,15 @@
* Implement a few FPU instructions.
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -46,7 +46,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: fpu_etc.c,v 1.2 1994/04/29 21:16:22 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/fpu_system.h b/sys/gnu/i386/fpemul/fpu_system.h
index d8fdd61d52c2..8bcc14c0922b 100644
--- a/sys/gnu/i386/fpemul/fpu_system.h
+++ b/sys/gnu/i386/fpemul/fpu_system.h
@@ -2,15 +2,15 @@
* fpu_system.h
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -44,7 +44,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: fpu_system.h,v 1.2 1994/04/29 21:16:24 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/fpu_trig.c b/sys/gnu/i386/fpemul/fpu_trig.c
index e2175106da46..ca32f91d0aef 100644
--- a/sys/gnu/i386/fpemul/fpu_trig.c
+++ b/sys/gnu/i386/fpemul/fpu_trig.c
@@ -4,15 +4,15 @@
* Implementation of the FPU "transcendental" functions.
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -46,7 +46,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: fpu_trig.c,v 1.3 1994/04/29 21:16:25 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/get_address.c b/sys/gnu/i386/fpemul/get_address.c
index f8100ead8154..5839e57c2684 100644
--- a/sys/gnu/i386/fpemul/get_address.c
+++ b/sys/gnu/i386/fpemul/get_address.c
@@ -4,15 +4,15 @@
* Get the effective address from an FPU instruction.
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -46,7 +46,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: get_address.c,v 1.2 1994/04/29 21:16:26 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/load_store.c b/sys/gnu/i386/fpemul/load_store.c
index 5f094c3c8d52..01922913b028 100644
--- a/sys/gnu/i386/fpemul/load_store.c
+++ b/sys/gnu/i386/fpemul/load_store.c
@@ -5,15 +5,15 @@
* which load and store from user memory.
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -47,7 +47,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: load_store.c,v 1.2 1994/04/29 21:16:27 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/poly_2xm1.c b/sys/gnu/i386/fpemul/poly_2xm1.c
index fd59398c2d55..b7e81f241f1c 100644
--- a/sys/gnu/i386/fpemul/poly_2xm1.c
+++ b/sys/gnu/i386/fpemul/poly_2xm1.c
@@ -4,15 +4,15 @@
* Function to compute 2^x-1 by a polynomial approximation.
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -46,7 +46,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: poly_2xm1.c,v 1.2 1994/04/29 21:23:25 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/poly_atan.c b/sys/gnu/i386/fpemul/poly_atan.c
index d04caa8a84f8..179049fcfb10 100644
--- a/sys/gnu/i386/fpemul/poly_atan.c
+++ b/sys/gnu/i386/fpemul/poly_atan.c
@@ -4,15 +4,15 @@
* Compute the tan of a FPU_REG, using a polynomial approximation.
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -46,7 +46,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: poly_atan.c,v 1.3 1994/04/29 21:23:26 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/poly_div.s b/sys/gnu/i386/fpemul/poly_div.s
index b4ce54e27116..3ac5bf06fe1b 100644
--- a/sys/gnu/i386/fpemul/poly_div.s
+++ b/sys/gnu/i386/fpemul/poly_div.s
@@ -5,15 +5,15 @@
* A set of functions to divide 64 bit integers by fixed numbers.
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -47,7 +47,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: poly_div.s,v 1.2 1994/04/29 21:23:27 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/poly_l2.c b/sys/gnu/i386/fpemul/poly_l2.c
index b6691f300c04..0607c1609d28 100644
--- a/sys/gnu/i386/fpemul/poly_l2.c
+++ b/sys/gnu/i386/fpemul/poly_l2.c
@@ -4,15 +4,15 @@
* Compute the base 2 log of a FPU_REG, using a polynomial approximation.
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -46,7 +46,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id: poly_l2.c,v 1.3 1994/04/29 21:23:28 gclarkii Exp $
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: poly_l2.c,v 1.4 1994/04/30 16:47:08 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/poly_mul64.s b/sys/gnu/i386/fpemul/poly_mul64.s
index b5b325fa7f4d..c0f5d0fc5ba9 100644
--- a/sys/gnu/i386/fpemul/poly_mul64.s
+++ b/sys/gnu/i386/fpemul/poly_mul64.s
@@ -7,15 +7,15 @@
* void mul64(long long *a, long long *b, long long *result)
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -49,7 +49,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: poly_mul64.s,v 1.2 1994/04/29 21:23:29 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/poly_sin.c b/sys/gnu/i386/fpemul/poly_sin.c
index 715f9c3d2314..fd3cbd262ca1 100644
--- a/sys/gnu/i386/fpemul/poly_sin.c
+++ b/sys/gnu/i386/fpemul/poly_sin.c
@@ -4,15 +4,15 @@
* Computation of an approximation of the sin function by a polynomial
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -46,7 +46,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: poly_sin.c,v 1.3 1994/04/29 21:23:30 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/poly_tan.c b/sys/gnu/i386/fpemul/poly_tan.c
index 495de5a21539..7f703880a36a 100644
--- a/sys/gnu/i386/fpemul/poly_tan.c
+++ b/sys/gnu/i386/fpemul/poly_tan.c
@@ -4,15 +4,15 @@
* Compute the tan of a FPU_REG, using a polynomial approximation.
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -46,7 +46,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: poly_tan.c,v 1.3 1994/04/29 21:23:31 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/polynomial.s b/sys/gnu/i386/fpemul/polynomial.s
index 5588a8422ee1..f54c729fe6fd 100644
--- a/sys/gnu/i386/fpemul/polynomial.s
+++ b/sys/gnu/i386/fpemul/polynomial.s
@@ -12,15 +12,15 @@
* The result is returned in accum.
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -54,7 +54,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: polynomial.s,v 1.2 1994/04/29 21:23:31 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/reg_add_sub.c b/sys/gnu/i386/fpemul/reg_add_sub.c
index aca1b342b47b..a122452f19f9 100644
--- a/sys/gnu/i386/fpemul/reg_add_sub.c
+++ b/sys/gnu/i386/fpemul/reg_add_sub.c
@@ -3,15 +3,15 @@
*
* Functions to add or subtract two registers and put the result in a third.
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -45,7 +45,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: reg_add_sub.c,v 1.2 1994/04/29 21:30:15 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/reg_compare.c b/sys/gnu/i386/fpemul/reg_compare.c
index 8f650001ab95..a4f8ae72f7ad 100644
--- a/sys/gnu/i386/fpemul/reg_compare.c
+++ b/sys/gnu/i386/fpemul/reg_compare.c
@@ -4,15 +4,15 @@
* Compare two floating point registers
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -46,7 +46,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: reg_compare.c,v 1.2 1994/04/29 21:30:16 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/reg_constant.c b/sys/gnu/i386/fpemul/reg_constant.c
index 8c767af678fe..f33427358e1c 100644
--- a/sys/gnu/i386/fpemul/reg_constant.c
+++ b/sys/gnu/i386/fpemul/reg_constant.c
@@ -4,15 +4,15 @@
* All of the constant FPU_REGs
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -46,6 +46,16 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
* $id:$
*
*/
diff --git a/sys/gnu/i386/fpemul/reg_constant.h b/sys/gnu/i386/fpemul/reg_constant.h
index 2ec19e4239fb..6e4ffa86d78e 100644
--- a/sys/gnu/i386/fpemul/reg_constant.h
+++ b/sys/gnu/i386/fpemul/reg_constant.h
@@ -2,15 +2,15 @@
* reg_constant.h
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -44,7 +44,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: reg_constant.h,v 1.2 1994/04/29 21:30:18 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/reg_div.s b/sys/gnu/i386/fpemul/reg_div.s
index 2c1ffc1362ee..5de5a466c49f 100644
--- a/sys/gnu/i386/fpemul/reg_div.s
+++ b/sys/gnu/i386/fpemul/reg_div.s
@@ -8,15 +8,15 @@
* void reg_div(FPU_REG *a, FPU_REG *b, FPU_REG *dest,
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -49,8 +49,18 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
+ *
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
*
- * $Id:$
+ * $Id: reg_div.s,v 1.2 1994/04/29 21:30:19 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/reg_ld_str.c b/sys/gnu/i386/fpemul/reg_ld_str.c
index b7a2d8a30c96..4edaa9d6d608 100644
--- a/sys/gnu/i386/fpemul/reg_ld_str.c
+++ b/sys/gnu/i386/fpemul/reg_ld_str.c
@@ -4,15 +4,15 @@
* All of the functions which transfer data between user memory and FPU_REGs.
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -46,7 +46,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: reg_ld_str.c,v 1.2 1994/04/29 21:30:20 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/reg_mul.c b/sys/gnu/i386/fpemul/reg_mul.c
index d694ae4c9c59..b51e9fcf2ed7 100644
--- a/sys/gnu/i386/fpemul/reg_mul.c
+++ b/sys/gnu/i386/fpemul/reg_mul.c
@@ -4,15 +4,15 @@
* Multiply one FPU_REG by another, put the result in a destination FPU_REG.
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -46,7 +46,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: reg_mul.c,v 1.2 1994/04/29 21:30:21 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/reg_norm.s b/sys/gnu/i386/fpemul/reg_norm.s
index 55f75b9b75c4..6f9dd7c9693a 100644
--- a/sys/gnu/i386/fpemul/reg_norm.s
+++ b/sys/gnu/i386/fpemul/reg_norm.s
@@ -9,15 +9,15 @@
* void normalize_nuo(FPU_REG *n)
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -51,7 +51,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: reg_norm.s,v 1.2 1994/04/29 21:30:22 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/reg_round.s b/sys/gnu/i386/fpemul/reg_round.s
index 55bbaff8dd83..99a2a8aa352e 100644
--- a/sys/gnu/i386/fpemul/reg_round.s
+++ b/sys/gnu/i386/fpemul/reg_round.s
@@ -13,15 +13,15 @@
* void round_reg(FPU_REG *arg, unsigned int extent, unsigned int control_w)
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -55,7 +55,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: reg_round.s,v 1.2 1994/04/29 21:30:23 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/reg_u_add.s b/sys/gnu/i386/fpemul/reg_u_add.s
index 28e30bc7f90f..86c84753e679 100644
--- a/sys/gnu/i386/fpemul/reg_u_add.s
+++ b/sys/gnu/i386/fpemul/reg_u_add.s
@@ -10,15 +10,15 @@
* int control_w)
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -52,7 +52,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: reg_u_add.s,v 1.2 1994/04/29 21:34:23 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/reg_u_div.s b/sys/gnu/i386/fpemul/reg_u_div.s
index decfd4313249..4952923886a2 100644
--- a/sys/gnu/i386/fpemul/reg_u_div.s
+++ b/sys/gnu/i386/fpemul/reg_u_div.s
@@ -5,15 +5,15 @@
* Core division routines
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -47,7 +47,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: reg_u_div.s,v 1.2 1994/04/29 21:34:24 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/reg_u_mul.s b/sys/gnu/i386/fpemul/reg_u_mul.s
index ef53357fe9b3..798f2046c8eb 100644
--- a/sys/gnu/i386/fpemul/reg_u_mul.s
+++ b/sys/gnu/i386/fpemul/reg_u_mul.s
@@ -5,15 +5,15 @@
* Core multiplication routine
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -47,7 +47,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: reg_u_mul.s,v 1.2 1994/04/29 21:34:25 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/reg_u_sub.s b/sys/gnu/i386/fpemul/reg_u_sub.s
index 92c93443ce82..3161e190284b 100644
--- a/sys/gnu/i386/fpemul/reg_u_sub.s
+++ b/sys/gnu/i386/fpemul/reg_u_sub.s
@@ -9,15 +9,15 @@
* int control_w)
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -51,7 +51,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: reg_u_sub.s,v 1.2 1994/04/29 21:34:26 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/status_w.h b/sys/gnu/i386/fpemul/status_w.h
index 5c6523dc05cf..75b87b4757d1 100644
--- a/sys/gnu/i386/fpemul/status_w.h
+++ b/sys/gnu/i386/fpemul/status_w.h
@@ -2,15 +2,15 @@
* status_w.h
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -44,7 +44,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: status_w.h,v 1.2 1994/04/29 21:34:27 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/version.h b/sys/gnu/i386/fpemul/version.h
index 4d73be740ab4..9c08aeda7e2f 100644
--- a/sys/gnu/i386/fpemul/version.h
+++ b/sys/gnu/i386/fpemul/version.h
@@ -2,15 +2,15 @@
* version.h
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -44,7 +44,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: version.h,v 1.2 1994/04/29 21:34:28 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/wm_shrx.s b/sys/gnu/i386/fpemul/wm_shrx.s
index 97392becafd9..9de946448597 100644
--- a/sys/gnu/i386/fpemul/wm_shrx.s
+++ b/sys/gnu/i386/fpemul/wm_shrx.s
@@ -10,15 +10,15 @@
* unsigned shrxs(void *arg1, unsigned arg2)
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -52,7 +52,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: wm_shrx.s,v 1.2 1994/04/29 21:34:29 gclarkii Exp $
*
*/
diff --git a/sys/gnu/i386/fpemul/wm_sqrt.s b/sys/gnu/i386/fpemul/wm_sqrt.s
index 0dd39cb45fa2..b1bc03b2a933 100644
--- a/sys/gnu/i386/fpemul/wm_sqrt.s
+++ b/sys/gnu/i386/fpemul/wm_sqrt.s
@@ -8,15 +8,15 @@
* void wm_sqrt(FPU_REG *n, unsigned int control_word)
*
*
- * Copyright (C) 1992, 1993 W. Metzenthen, 22 Parker St, Ormond,
- * Vic 3163, Australia.
- * E-mail apm233m@vaxc.cc.monash.edu.au
+ * Copyright (C) 1992,1993,1994
+ * W. Metzenthen, 22 Parker St, Ormond, Vic 3163,
+ * Australia. E-mail billm@vaxc.cc.monash.edu.au
* All rights reserved.
*
* This copyright notice covers the redistribution and use of the
* FPU emulator developed by W. Metzenthen. It covers only its use
- * in the 386BSD operating system. Any other use is not permitted
- * under this copyright.
+ * in the 386BSD, FreeBSD and NetBSD operating systems. Any other
+ * use is not permitted under this copyright.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -50,7 +50,17 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
- * $Id:$
+ * The purpose of this copyright, based upon the Berkeley copyright, is to
+ * ensure that the covered software remains freely available to everyone.
+ *
+ * The software (with necessary differences) is also available, but under
+ * the terms of the GNU copyleft, for the Linux operating system and for
+ * the djgpp ms-dos extender.
+ *
+ * W. Metzenthen June 1994.
+ *
+ *
+ * $Id: wm_sqrt.s,v 1.2 1994/04/29 21:34:30 gclarkii Exp $
*
*/