[Gmp-commit] /var/hg/gmp: Added copyright headers to mini-gmp files.

mercurial at gmplib.org mercurial at gmplib.org
Wed Nov 21 11:14:09 CET 2012


details:   /var/hg/gmp/rev/e941fcd09c51
changeset: 15130:e941fcd09c51
user:      Niels M?ller <nisse at lysator.liu.se>
date:      Wed Nov 21 11:13:49 2012 +0100
description:
Added copyright headers to mini-gmp files.

diffstat:

 mini-gmp/README             |  18 ++++++++++++++++++
 mini-gmp/tests/Makefile     |  17 +++++++++++++++++
 mini-gmp/tests/t-add.c      |  19 +++++++++++++++++++
 mini-gmp/tests/t-bitops.c   |  19 +++++++++++++++++++
 mini-gmp/tests/t-div.c      |  19 +++++++++++++++++++
 mini-gmp/tests/t-div_2exp.c |  19 +++++++++++++++++++
 mini-gmp/tests/t-double.c   |  19 +++++++++++++++++++
 mini-gmp/tests/t-gcd.c      |  19 +++++++++++++++++++
 mini-gmp/tests/t-invert.c   |  19 +++++++++++++++++++
 mini-gmp/tests/t-lcm.c      |  19 +++++++++++++++++++
 mini-gmp/tests/t-logops.c   |  19 +++++++++++++++++++
 mini-gmp/tests/t-mul.c      |  19 +++++++++++++++++++
 mini-gmp/tests/t-powm.c     |  19 +++++++++++++++++++
 mini-gmp/tests/t-root.c     |  19 +++++++++++++++++++
 mini-gmp/tests/t-scan.c     |  19 +++++++++++++++++++
 mini-gmp/tests/t-sqrt.c     |  19 +++++++++++++++++++
 mini-gmp/tests/t-str.c      |  19 +++++++++++++++++++
 mini-gmp/tests/t-sub.c      |  19 +++++++++++++++++++
 18 files changed, 339 insertions(+), 0 deletions(-)

diffs (truncated from 467 to 300 lines):

diff -r cd8252e43e9c -r e941fcd09c51 mini-gmp/README
--- a/mini-gmp/README	Wed Nov 21 11:05:02 2012 +0100
+++ b/mini-gmp/README	Wed Nov 21 11:13:49 2012 +0100
@@ -1,3 +1,21 @@
+Copyright 2011, 2012 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 Lesser General Public License as published by
+the Free Software Foundation; either version 3 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 Lesser General Public
+License for more details.
+
+You should have received a copy of the GNU Lesser General Public License
+along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
+
+
 This is "mini-gmp", a small implementation of a subset of GMP's mpn
 and mpz interfaces.
 
diff -r cd8252e43e9c -r e941fcd09c51 mini-gmp/tests/Makefile
--- a/mini-gmp/tests/Makefile	Wed Nov 21 11:05:02 2012 +0100
+++ b/mini-gmp/tests/Makefile	Wed Nov 21 11:13:49 2012 +0100
@@ -1,5 +1,22 @@
 # Note: Requires GNU make
 
+# Copyright 2011, 2012 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 Lesser General Public License as published by
+# the Free Software Foundation; either version 3 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 Lesser General Public
+# License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public License
+# along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
+
 srcdir=.
 MINI_GMP_DIR=..
 
diff -r cd8252e43e9c -r e941fcd09c51 mini-gmp/tests/t-add.c
--- a/mini-gmp/tests/t-add.c	Wed Nov 21 11:05:02 2012 +0100
+++ b/mini-gmp/tests/t-add.c	Wed Nov 21 11:13:49 2012 +0100
@@ -1,3 +1,22 @@
+/*
+
+Copyright 2012, 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 Lesser General Public License as published by
+the Free Software Foundation; either version 3 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 Lesser General Public
+License for more details.
+
+You should have received a copy of the GNU Lesser General Public License
+along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
+
 #include <stdlib.h>
 #include <stdio.h>
 
diff -r cd8252e43e9c -r e941fcd09c51 mini-gmp/tests/t-bitops.c
--- a/mini-gmp/tests/t-bitops.c	Wed Nov 21 11:05:02 2012 +0100
+++ b/mini-gmp/tests/t-bitops.c	Wed Nov 21 11:13:49 2012 +0100
@@ -1,3 +1,22 @@
+/*
+
+Copyright 2012, 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 Lesser General Public License as published by
+the Free Software Foundation; either version 3 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 Lesser General Public
+License for more details.
+
+You should have received a copy of the GNU Lesser General Public License
+along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
+
 #include <limits.h>
 #include <stdlib.h>
 #include <stdio.h>
diff -r cd8252e43e9c -r e941fcd09c51 mini-gmp/tests/t-div.c
--- a/mini-gmp/tests/t-div.c	Wed Nov 21 11:05:02 2012 +0100
+++ b/mini-gmp/tests/t-div.c	Wed Nov 21 11:13:49 2012 +0100
@@ -1,3 +1,22 @@
+/*
+
+Copyright 2012, 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 Lesser General Public License as published by
+the Free Software Foundation; either version 3 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 Lesser General Public
+License for more details.
+
+You should have received a copy of the GNU Lesser General Public License
+along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
+
 #include <assert.h>
 #include <stdlib.h>
 #include <stdio.h>
diff -r cd8252e43e9c -r e941fcd09c51 mini-gmp/tests/t-div_2exp.c
--- a/mini-gmp/tests/t-div_2exp.c	Wed Nov 21 11:05:02 2012 +0100
+++ b/mini-gmp/tests/t-div_2exp.c	Wed Nov 21 11:13:49 2012 +0100
@@ -1,3 +1,22 @@
+/*
+
+Copyright 2012, 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 Lesser General Public License as published by
+the Free Software Foundation; either version 3 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 Lesser General Public
+License for more details.
+
+You should have received a copy of the GNU Lesser General Public License
+along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
+
 #include <assert.h>
 #include <stdlib.h>
 #include <stdio.h>
diff -r cd8252e43e9c -r e941fcd09c51 mini-gmp/tests/t-double.c
--- a/mini-gmp/tests/t-double.c	Wed Nov 21 11:05:02 2012 +0100
+++ b/mini-gmp/tests/t-double.c	Wed Nov 21 11:13:49 2012 +0100
@@ -1,3 +1,22 @@
+/*
+
+Copyright 2012, 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 Lesser General Public License as published by
+the Free Software Foundation; either version 3 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 Lesser General Public
+License for more details.
+
+You should have received a copy of the GNU Lesser General Public License
+along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
+
 #include <limits.h>
 #include <math.h>
 #include <stdlib.h>
diff -r cd8252e43e9c -r e941fcd09c51 mini-gmp/tests/t-gcd.c
--- a/mini-gmp/tests/t-gcd.c	Wed Nov 21 11:05:02 2012 +0100
+++ b/mini-gmp/tests/t-gcd.c	Wed Nov 21 11:13:49 2012 +0100
@@ -1,3 +1,22 @@
+/*
+
+Copyright 2012, 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 Lesser General Public License as published by
+the Free Software Foundation; either version 3 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 Lesser General Public
+License for more details.
+
+You should have received a copy of the GNU Lesser General Public License
+along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
+
 #include <limits.h>
 #include <stdlib.h>
 #include <stdio.h>
diff -r cd8252e43e9c -r e941fcd09c51 mini-gmp/tests/t-invert.c
--- a/mini-gmp/tests/t-invert.c	Wed Nov 21 11:05:02 2012 +0100
+++ b/mini-gmp/tests/t-invert.c	Wed Nov 21 11:13:49 2012 +0100
@@ -1,3 +1,22 @@
+/*
+
+Copyright 2012, 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 Lesser General Public License as published by
+the Free Software Foundation; either version 3 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 Lesser General Public
+License for more details.
+
+You should have received a copy of the GNU Lesser General Public License
+along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
+
 #include <limits.h>
 #include <stdlib.h>
 #include <stdio.h>
diff -r cd8252e43e9c -r e941fcd09c51 mini-gmp/tests/t-lcm.c
--- a/mini-gmp/tests/t-lcm.c	Wed Nov 21 11:05:02 2012 +0100
+++ b/mini-gmp/tests/t-lcm.c	Wed Nov 21 11:13:49 2012 +0100
@@ -1,3 +1,22 @@
+/*
+
+Copyright 2012, 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 Lesser General Public License as published by
+the Free Software Foundation; either version 3 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 Lesser General Public
+License for more details.
+
+You should have received a copy of the GNU Lesser General Public License
+along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
+
 #include <limits.h>
 #include <stdlib.h>
 #include <stdio.h>
diff -r cd8252e43e9c -r e941fcd09c51 mini-gmp/tests/t-logops.c
--- a/mini-gmp/tests/t-logops.c	Wed Nov 21 11:05:02 2012 +0100
+++ b/mini-gmp/tests/t-logops.c	Wed Nov 21 11:13:49 2012 +0100
@@ -1,3 +1,22 @@
+/*
+
+Copyright 2012, 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 Lesser General Public License as published by
+the Free Software Foundation; either version 3 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 Lesser General Public
+License for more details.
+
+You should have received a copy of the GNU Lesser General Public License
+along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
+
 #include <limits.h>
 #include <stdlib.h>
 #include <stdio.h>
diff -r cd8252e43e9c -r e941fcd09c51 mini-gmp/tests/t-mul.c
--- a/mini-gmp/tests/t-mul.c	Wed Nov 21 11:05:02 2012 +0100
+++ b/mini-gmp/tests/t-mul.c	Wed Nov 21 11:13:49 2012 +0100
@@ -1,3 +1,22 @@
+/*
+
+Copyright 2012, 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 Lesser General Public License as published by
+the Free Software Foundation; either version 3 of the License, or (at your
+option) any later version.
+


More information about the gmp-commit mailing list