about summary refs log tree commit diff
path: root/setjmp
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2012-02-09 23:18:22 +0000
committerJoseph Myers <joseph@codesourcery.com>2012-02-09 23:18:22 +0000
commit59ba27a63ada3f46b71ec99a314dfac5a38ad6d2 (patch)
tree69edda6ebdfd8fe5d83991ab44723e07f6366420 /setjmp
parentaf850b1c978bdca648ef9fb141e785d75f74d9bf (diff)
downloadglibc-59ba27a63ada3f46b71ec99a314dfac5a38ad6d2.tar.gz
glibc-59ba27a63ada3f46b71ec99a314dfac5a38ad6d2.tar.xz
glibc-59ba27a63ada3f46b71ec99a314dfac5a38ad6d2.zip
Replace FSF snail mail address with URLs.
Diffstat (limited to 'setjmp')
-rw-r--r--setjmp/Makefile5
-rw-r--r--setjmp/__longjmp.c5
-rw-r--r--setjmp/bits/setjmp2.h5
-rw-r--r--setjmp/bsd-_setjmp.c5
-rw-r--r--setjmp/bsd-setjmp.c5
-rw-r--r--setjmp/bug269-setjmp.c5
-rw-r--r--setjmp/jmp-unwind.c5
-rw-r--r--setjmp/longjmp.c5
-rw-r--r--setjmp/setjmp.c5
-rw-r--r--setjmp/setjmp.h5
-rw-r--r--setjmp/sigjmp.c5
-rw-r--r--setjmp/tst-setjmp.c5
12 files changed, 24 insertions, 36 deletions
diff --git a/setjmp/Makefile b/setjmp/Makefile
index 509c1d9a0c..17958b4113 100644
--- a/setjmp/Makefile
+++ b/setjmp/Makefile
@@ -12,9 +12,8 @@
 # Lesser General Public License for more details.
 
 # You should have received a copy of the GNU Lesser General Public
-# License along with the GNU C Library; if not, write to the Free
-# Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-# 02111-1307 USA.
+# License along with the GNU C Library; if not, see
+# <http://www.gnu.org/licenses/>.
 
 #
 #	Makefile for setjmp/longjmp routines
diff --git a/setjmp/__longjmp.c b/setjmp/__longjmp.c
index 8a61ff6770..6a5780a32b 100644
--- a/setjmp/__longjmp.c
+++ b/setjmp/__longjmp.c
@@ -12,9 +12,8 @@
    Lesser General Public License for more details.
 
    You should have received a copy of the GNU Lesser General Public
-   License along with the GNU C Library; if not, write to the Free
-   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-   02111-1307 USA.  */
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
 
 #include <errno.h>
 #include <setjmp.h>
diff --git a/setjmp/bits/setjmp2.h b/setjmp/bits/setjmp2.h
index ad65d25970..1276ee8b1e 100644
--- a/setjmp/bits/setjmp2.h
+++ b/setjmp/bits/setjmp2.h
@@ -13,9 +13,8 @@
    Lesser General Public License for more details.
 
    You should have received a copy of the GNU Lesser General Public
-   License along with the GNU C Library; if not, write to the Free
-   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-   02111-1307 USA.  */
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
 
 #ifndef _SETJMP_H
 # error "Never include <bits/setjmp2.h> directly; use <setjmp.h> instead."
diff --git a/setjmp/bsd-_setjmp.c b/setjmp/bsd-_setjmp.c
index 884a4da9b6..1ce8c3f7eb 100644
--- a/setjmp/bsd-_setjmp.c
+++ b/setjmp/bsd-_setjmp.c
@@ -13,9 +13,8 @@
    Lesser General Public License for more details.
 
    You should have received a copy of the GNU Lesser General Public
-   License along with the GNU C Library; if not, write to the Free
-   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-   02111-1307 USA.  */
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
 
 #include <sysdep.h>
 #include <setjmp.h>
diff --git a/setjmp/bsd-setjmp.c b/setjmp/bsd-setjmp.c
index 15f3f153cc..8282514e1f 100644
--- a/setjmp/bsd-setjmp.c
+++ b/setjmp/bsd-setjmp.c
@@ -13,9 +13,8 @@
    Lesser General Public License for more details.
 
    You should have received a copy of the GNU Lesser General Public
-   License along with the GNU C Library; if not, write to the Free
-   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-   02111-1307 USA.  */
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
 
 #include <sysdep.h>
 #include <setjmp.h>
diff --git a/setjmp/bug269-setjmp.c b/setjmp/bug269-setjmp.c
index f50a5b1a58..c446429812 100644
--- a/setjmp/bug269-setjmp.c
+++ b/setjmp/bug269-setjmp.c
@@ -12,9 +12,8 @@
    Lesser General Public License for more details.
 
    You should have received a copy of the GNU Lesser General Public
-   License along with the GNU C Library; if not, write to the Free
-   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-   02111-1307 USA.  */ ;
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
 
 /* Test case for Bugzilla # 269 */
 
diff --git a/setjmp/jmp-unwind.c b/setjmp/jmp-unwind.c
index d2f76c62e7..96bb603078 100644
--- a/setjmp/jmp-unwind.c
+++ b/setjmp/jmp-unwind.c
@@ -13,9 +13,8 @@
    Lesser General Public License for more details.
 
    You should have received a copy of the GNU Lesser General Public
-   License along with the GNU C Library; if not, write to the Free
-   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-   02111-1307 USA.  */
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
 
 #include <setjmp.h>
 
diff --git a/setjmp/longjmp.c b/setjmp/longjmp.c
index 8545b36627..b964756231 100644
--- a/setjmp/longjmp.c
+++ b/setjmp/longjmp.c
@@ -13,9 +13,8 @@
    Lesser General Public License for more details.
 
    You should have received a copy of the GNU Lesser General Public
-   License along with the GNU C Library; if not, write to the Free
-   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-   02111-1307 USA.  */
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
 
 #include <stddef.h>
 #include <setjmp.h>
diff --git a/setjmp/setjmp.c b/setjmp/setjmp.c
index 0676ff1396..11a4fea209 100644
--- a/setjmp/setjmp.c
+++ b/setjmp/setjmp.c
@@ -12,9 +12,8 @@
    Lesser General Public License for more details.
 
    You should have received a copy of the GNU Lesser General Public
-   License along with the GNU C Library; if not, write to the Free
-   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-   02111-1307 USA.  */
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
 
 #include <errno.h>
 #include <setjmp.h>
diff --git a/setjmp/setjmp.h b/setjmp/setjmp.h
index fd57ab645b..42c436811e 100644
--- a/setjmp/setjmp.h
+++ b/setjmp/setjmp.h
@@ -12,9 +12,8 @@
    Lesser General Public License for more details.
 
    You should have received a copy of the GNU Lesser General Public
-   License along with the GNU C Library; if not, write to the Free
-   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-   02111-1307 USA.  */
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
 
 /*
  *	ISO C99 Standard: 7.13 Nonlocal jumps	<setjmp.h>
diff --git a/setjmp/sigjmp.c b/setjmp/sigjmp.c
index b23c547f5e..951abb76c6 100644
--- a/setjmp/sigjmp.c
+++ b/setjmp/sigjmp.c
@@ -12,9 +12,8 @@
    Lesser General Public License for more details.
 
    You should have received a copy of the GNU Lesser General Public
-   License along with the GNU C Library; if not, write to the Free
-   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-   02111-1307 USA.  */
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
 
 #include <stddef.h>
 #include <setjmp.h>
diff --git a/setjmp/tst-setjmp.c b/setjmp/tst-setjmp.c
index 35d9638ad8..866b06c3dc 100644
--- a/setjmp/tst-setjmp.c
+++ b/setjmp/tst-setjmp.c
@@ -12,9 +12,8 @@
    Lesser General Public License for more details.
 
    You should have received a copy of the GNU Lesser General Public
-   License along with the GNU C Library; if not, write to the Free
-   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-   02111-1307 USA.  */
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
 
 #include <stdio.h>
 #include <setjmp.h>