summaryrefslogtreecommitdiff
path: root/mpn/clipper
diff options
context:
space:
mode:
authortege <tege@gmplib.org>1996-05-22 06:31:57 +0200
committertege <tege@gmplib.org>1996-05-22 06:31:57 +0200
commit1d266307b4a128f04bef027b581dcbd7c0fe565e (patch)
treed038e7198d541be1bf493be657dfe1e2c2d183e0 /mpn/clipper
parent59bba6970b4b7788a541dee7a05d43d42a080840 (diff)
downloadgmp-1d266307b4a128f04bef027b581dcbd7c0fe565e.tar.gz
Add missing copyright headers.
Diffstat (limited to 'mpn/clipper')
-rw-r--r--mpn/clipper/add_n.s22
-rw-r--r--mpn/clipper/mul_1.s22
-rw-r--r--mpn/clipper/sub_n.s22
3 files changed, 66 insertions, 0 deletions
diff --git a/mpn/clipper/add_n.s b/mpn/clipper/add_n.s
index 40ed1bd32..8d9b98673 100644
--- a/mpn/clipper/add_n.s
+++ b/mpn/clipper/add_n.s
@@ -1,3 +1,25 @@
+; Clipper __mpn_add_n -- Add two limb vectors of the same length > 0 and store
+; sum in a third limb vector.
+
+; Copyright (C) 1995 Free Software Foundation, Inc.
+
+; This file is part of the GNU MP Library.
+
+; The GNU MP Library is free software; you can redistribute it and/or modify
+; it under the terms of the GNU Library General Public License as published by
+; the Free Software Foundation; either version 2 of the License, or (at your
+; option) any later version.
+
+; The GNU MP Library is distributed in the hope that it will be useful, but
+; WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+; or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
+; License for more details.
+
+; You should have received a copy of the GNU Library General Public License
+; along with the GNU MP Library; see the file COPYING.LIB. If not, write to
+; the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
+; MA 02111-1307, USA.
+
.text
.align 16
.globl ___mpn_add_n
diff --git a/mpn/clipper/mul_1.s b/mpn/clipper/mul_1.s
index f20ece02a..44d92c3d5 100644
--- a/mpn/clipper/mul_1.s
+++ b/mpn/clipper/mul_1.s
@@ -1,3 +1,25 @@
+; Clipper __mpn_mul_1 -- Multiply a limb vector with a limb and store
+; the result in a second limb vector.
+
+; Copyright (C) 1995 Free Software Foundation, Inc.
+
+; This file is part of the GNU MP Library.
+
+; The GNU MP Library is free software; you can redistribute it and/or modify
+; it under the terms of the GNU Library General Public License as published by
+; the Free Software Foundation; either version 2 of the License, or (at your
+; option) any later version.
+
+; The GNU MP Library is distributed in the hope that it will be useful, but
+; WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+; or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
+; License for more details.
+
+; You should have received a copy of the GNU Library General Public License
+; along with the GNU MP Library; see the file COPYING.LIB. If not, write to
+; the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
+; MA 02111-1307, USA.
+
.text
.align 16
.globl ___mpn_mul_1
diff --git a/mpn/clipper/sub_n.s b/mpn/clipper/sub_n.s
index 6f47d47c9..882c99104 100644
--- a/mpn/clipper/sub_n.s
+++ b/mpn/clipper/sub_n.s
@@ -1,3 +1,25 @@
+; Clipper __mpn_sub_n -- Subtract two limb vectors of the same length > 0 and
+; store difference in a third limb vector.
+
+; Copyright (C) 1995 Free Software Foundation, Inc.
+
+; This file is part of the GNU MP Library.
+
+; The GNU MP Library is free software; you can redistribute it and/or modify
+; it under the terms of the GNU Library General Public License as published by
+; the Free Software Foundation; either version 2 of the License, or (at your
+; option) any later version.
+
+; The GNU MP Library is distributed in the hope that it will be useful, but
+; WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+; or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
+; License for more details.
+
+; You should have received a copy of the GNU Library General Public License
+; along with the GNU MP Library; see the file COPYING.LIB. If not, write to
+; the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
+; MA 02111-1307, USA.
+
.text
.align 16
.globl ___mpn_sub_n