summaryrefslogtreecommitdiff
path: root/libc/nptl/sysdeps/pthread
diff options
context:
space:
mode:
Diffstat (limited to 'libc/nptl/sysdeps/pthread')
-rw-r--r--libc/nptl/sysdeps/pthread/Makefile5
-rw-r--r--libc/nptl/sysdeps/pthread/aio_misc.h5
-rw-r--r--libc/nptl/sysdeps/pthread/allocalim.h5
-rw-r--r--libc/nptl/sysdeps/pthread/bits/libc-lock.h5
-rw-r--r--libc/nptl/sysdeps/pthread/bits/sigthread.h5
-rw-r--r--libc/nptl/sysdeps/pthread/bits/stdio-lock.h5
-rw-r--r--libc/nptl/sysdeps/pthread/createthread.c5
-rw-r--r--libc/nptl/sysdeps/pthread/flockfile.c5
-rw-r--r--libc/nptl/sysdeps/pthread/ftrylockfile.c5
-rw-r--r--libc/nptl/sysdeps/pthread/funlockfile.c5
-rw-r--r--libc/nptl/sysdeps/pthread/gai_misc.h5
-rw-r--r--libc/nptl/sysdeps/pthread/librt-cancellation.c5
-rw-r--r--libc/nptl/sysdeps/pthread/list.h5
-rw-r--r--libc/nptl/sysdeps/pthread/malloc-machine.h5
-rw-r--r--libc/nptl/sysdeps/pthread/posix-timer.h5
-rw-r--r--libc/nptl/sysdeps/pthread/pt-initfini.c5
-rw-r--r--libc/nptl/sysdeps/pthread/pt-longjmp.c5
-rw-r--r--libc/nptl/sysdeps/pthread/pthread-functions.h5
-rw-r--r--libc/nptl/sysdeps/pthread/pthread.h5
-rw-r--r--libc/nptl/sysdeps/pthread/pthread_sigmask.c5
-rw-r--r--libc/nptl/sysdeps/pthread/setxid.h5
-rw-r--r--libc/nptl/sysdeps/pthread/sigfillset.c5
-rw-r--r--libc/nptl/sysdeps/pthread/sigprocmask.c5
-rw-r--r--libc/nptl/sysdeps/pthread/timer_create.c5
-rw-r--r--libc/nptl/sysdeps/pthread/timer_delete.c5
-rw-r--r--libc/nptl/sysdeps/pthread/timer_getoverr.c5
-rw-r--r--libc/nptl/sysdeps/pthread/timer_gettime.c5
-rw-r--r--libc/nptl/sysdeps/pthread/timer_routines.c5
-rw-r--r--libc/nptl/sysdeps/pthread/timer_settime.c5
-rw-r--r--libc/nptl/sysdeps/pthread/tst-timer.c5
-rw-r--r--libc/nptl/sysdeps/pthread/unwind-forcedunwind.c5
31 files changed, 62 insertions, 93 deletions
diff --git a/libc/nptl/sysdeps/pthread/Makefile b/libc/nptl/sysdeps/pthread/Makefile
index 0f2f74993..85c86e61e 100644
--- a/libc/nptl/sysdeps/pthread/Makefile
+++ b/libc/nptl/sysdeps/pthread/Makefile
@@ -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/>.
ifeq ($(subdir),nptl)
libpthread-sysdep_routines += errno-loc
diff --git a/libc/nptl/sysdeps/pthread/aio_misc.h b/libc/nptl/sysdeps/pthread/aio_misc.h
index f36825e06..3354e7f5e 100644
--- a/libc/nptl/sysdeps/pthread/aio_misc.h
+++ b/libc/nptl/sysdeps/pthread/aio_misc.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/>. */
/* We define a special synchronization primitive for AIO. POSIX
conditional variables would be ideal but the pthread_cond_*wait
diff --git a/libc/nptl/sysdeps/pthread/allocalim.h b/libc/nptl/sysdeps/pthread/allocalim.h
index 8265db1c4..bf22a2642 100644
--- a/libc/nptl/sysdeps/pthread/allocalim.h
+++ b/libc/nptl/sysdeps/pthread/allocalim.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; see the file COPYING.LIB. 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; see the file COPYING.LIB. If
+ not, see <http://www.gnu.org/licenses/>. */
#include <alloca.h>
#include <limits.h>
diff --git a/libc/nptl/sysdeps/pthread/bits/libc-lock.h b/libc/nptl/sysdeps/pthread/bits/libc-lock.h
index a41b71632..9faa5281a 100644
--- a/libc/nptl/sysdeps/pthread/bits/libc-lock.h
+++ b/libc/nptl/sysdeps/pthread/bits/libc-lock.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; see the file COPYING.LIB. 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; see the file COPYING.LIB. If
+ not, see <http://www.gnu.org/licenses/>. */
#ifndef _BITS_LIBC_LOCK_H
#define _BITS_LIBC_LOCK_H 1
diff --git a/libc/nptl/sysdeps/pthread/bits/sigthread.h b/libc/nptl/sysdeps/pthread/bits/sigthread.h
index 672e7afcc..71fb1a088 100644
--- a/libc/nptl/sysdeps/pthread/bits/sigthread.h
+++ b/libc/nptl/sysdeps/pthread/bits/sigthread.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; see the file COPYING.LIB. 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; see the file COPYING.LIB. If
+ not, see <http://www.gnu.org/licenses/>. */
#ifndef _BITS_SIGTHREAD_H
#define _BITS_SIGTHREAD_H 1
diff --git a/libc/nptl/sysdeps/pthread/bits/stdio-lock.h b/libc/nptl/sysdeps/pthread/bits/stdio-lock.h
index b8efdd8d5..686d88b34 100644
--- a/libc/nptl/sysdeps/pthread/bits/stdio-lock.h
+++ b/libc/nptl/sysdeps/pthread/bits/stdio-lock.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 _BITS_STDIO_LOCK_H
#define _BITS_STDIO_LOCK_H 1
diff --git a/libc/nptl/sysdeps/pthread/createthread.c b/libc/nptl/sysdeps/pthread/createthread.c
index 8d96387a9..3ead82535 100644
--- a/libc/nptl/sysdeps/pthread/createthread.c
+++ b/libc/nptl/sysdeps/pthread/createthread.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 <sched.h>
#include <setjmp.h>
diff --git a/libc/nptl/sysdeps/pthread/flockfile.c b/libc/nptl/sysdeps/pthread/flockfile.c
index 918cb84f6..538e368a0 100644
--- a/libc/nptl/sysdeps/pthread/flockfile.c
+++ b/libc/nptl/sysdeps/pthread/flockfile.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 <pthread.h>
#include <stdio.h>
diff --git a/libc/nptl/sysdeps/pthread/ftrylockfile.c b/libc/nptl/sysdeps/pthread/ftrylockfile.c
index 21c1ea01e..d814258d8 100644
--- a/libc/nptl/sysdeps/pthread/ftrylockfile.c
+++ b/libc/nptl/sysdeps/pthread/ftrylockfile.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 <errno.h>
#include <pthread.h>
diff --git a/libc/nptl/sysdeps/pthread/funlockfile.c b/libc/nptl/sysdeps/pthread/funlockfile.c
index f941fc985..f45479936 100644
--- a/libc/nptl/sysdeps/pthread/funlockfile.c
+++ b/libc/nptl/sysdeps/pthread/funlockfile.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 <pthread.h>
#include <stdio.h>
diff --git a/libc/nptl/sysdeps/pthread/gai_misc.h b/libc/nptl/sysdeps/pthread/gai_misc.h
index cbbe47657..f87aa2f7b 100644
--- a/libc/nptl/sysdeps/pthread/gai_misc.h
+++ b/libc/nptl/sysdeps/pthread/gai_misc.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/>. */
/* We define a special synchronization primitive for AIO. POSIX
conditional variables would be ideal but the pthread_cond_*wait
diff --git a/libc/nptl/sysdeps/pthread/librt-cancellation.c b/libc/nptl/sysdeps/pthread/librt-cancellation.c
index d9f7ad9ea..602989d84 100644
--- a/libc/nptl/sysdeps/pthread/librt-cancellation.c
+++ b/libc/nptl/sysdeps/pthread/librt-cancellation.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 "pthreadP.h"
diff --git a/libc/nptl/sysdeps/pthread/list.h b/libc/nptl/sysdeps/pthread/list.h
index cfc4abad3..6ac898864 100644
--- a/libc/nptl/sysdeps/pthread/list.h
+++ b/libc/nptl/sysdeps/pthread/list.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 _LIST_H
diff --git a/libc/nptl/sysdeps/pthread/malloc-machine.h b/libc/nptl/sysdeps/pthread/malloc-machine.h
index 73503aee0..3d9201259 100644
--- a/libc/nptl/sysdeps/pthread/malloc-machine.h
+++ b/libc/nptl/sysdeps/pthread/malloc-machine.h
@@ -14,9 +14,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 _MALLOC_MACHINE_H
#define _MALLOC_MACHINE_H
diff --git a/libc/nptl/sysdeps/pthread/posix-timer.h b/libc/nptl/sysdeps/pthread/posix-timer.h
index 8b4cbc8cd..b1d8efca5 100644
--- a/libc/nptl/sysdeps/pthread/posix-timer.h
+++ b/libc/nptl/sysdeps/pthread/posix-timer.h
@@ -14,9 +14,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; see the file COPYING.LIB. 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; see the file COPYING.LIB. If
+ not, see <http://www.gnu.org/licenses/>. */
#include <limits.h>
#include <signal.h>
diff --git a/libc/nptl/sysdeps/pthread/pt-initfini.c b/libc/nptl/sysdeps/pthread/pt-initfini.c
index f5d4df886..cf47d9c3e 100644
--- a/libc/nptl/sysdeps/pthread/pt-initfini.c
+++ b/libc/nptl/sysdeps/pthread/pt-initfini.c
@@ -22,9 +22,8 @@
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 C Library; see the file COPYING.LIB. If not,
- write to the Free Software Foundation, 59 Temple Place - Suite 330,
- Boston, MA 02111-1307, USA. */
+ License along with the GNU C Library; see the file COPYING.LIB. If
+ not, see <http://www.gnu.org/licenses/>. */
/* This file is compiled into assembly code which is then munged by a sed
script into two files: crti.s and crtn.s.
diff --git a/libc/nptl/sysdeps/pthread/pt-longjmp.c b/libc/nptl/sysdeps/pthread/pt-longjmp.c
index f161380ea..08bd86b51 100644
--- a/libc/nptl/sysdeps/pthread/pt-longjmp.c
+++ b/libc/nptl/sysdeps/pthread/pt-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 <setjmp.h>
#include <stdlib.h>
diff --git a/libc/nptl/sysdeps/pthread/pthread-functions.h b/libc/nptl/sysdeps/pthread/pthread-functions.h
index 5d77cb71d..a1894f4f8 100644
--- a/libc/nptl/sysdeps/pthread/pthread-functions.h
+++ b/libc/nptl/sysdeps/pthread/pthread-functions.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 _PTHREAD_FUNCTIONS_H
#define _PTHREAD_FUNCTIONS_H 1
diff --git a/libc/nptl/sysdeps/pthread/pthread.h b/libc/nptl/sysdeps/pthread/pthread.h
index ce38cf9d6..c2eb91aa0 100644
--- a/libc/nptl/sysdeps/pthread/pthread.h
+++ b/libc/nptl/sysdeps/pthread/pthread.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/>. */
#ifndef _PTHREAD_H
#define _PTHREAD_H 1
diff --git a/libc/nptl/sysdeps/pthread/pthread_sigmask.c b/libc/nptl/sysdeps/pthread/pthread_sigmask.c
index 0d12fe6bf..8db7d18f4 100644
--- a/libc/nptl/sysdeps/pthread/pthread_sigmask.c
+++ b/libc/nptl/sysdeps/pthread/pthread_sigmask.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 <errno.h>
#include <signal.h>
diff --git a/libc/nptl/sysdeps/pthread/setxid.h b/libc/nptl/sysdeps/pthread/setxid.h
index 043ffd25b..5433bc82a 100644
--- a/libc/nptl/sysdeps/pthread/setxid.h
+++ b/libc/nptl/sysdeps/pthread/setxid.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/>. */
#include <pthreadP.h>
#include <sysdep.h>
diff --git a/libc/nptl/sysdeps/pthread/sigfillset.c b/libc/nptl/sysdeps/pthread/sigfillset.c
index 180607c77..2e87f1eb1 100644
--- a/libc/nptl/sysdeps/pthread/sigfillset.c
+++ b/libc/nptl/sysdeps/pthread/sigfillset.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 <nptl/pthreadP.h>
diff --git a/libc/nptl/sysdeps/pthread/sigprocmask.c b/libc/nptl/sysdeps/pthread/sigprocmask.c
index 855b43396..ad959a3a2 100644
--- a/libc/nptl/sysdeps/pthread/sigprocmask.c
+++ b/libc/nptl/sysdeps/pthread/sigprocmask.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 <nptl/pthreadP.h>
#include <sysdeps/unix/sysv/linux/sigprocmask.c>
diff --git a/libc/nptl/sysdeps/pthread/timer_create.c b/libc/nptl/sysdeps/pthread/timer_create.c
index 2809ac744..f61c5a3eb 100644
--- a/libc/nptl/sysdeps/pthread/timer_create.c
+++ b/libc/nptl/sysdeps/pthread/timer_create.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; see the file COPYING.LIB. 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; see the file COPYING.LIB. If
+ not, see <http://www.gnu.org/licenses/>. */
#include <errno.h>
#include <signal.h>
diff --git a/libc/nptl/sysdeps/pthread/timer_delete.c b/libc/nptl/sysdeps/pthread/timer_delete.c
index 48ba1f272..a529d7392 100644
--- a/libc/nptl/sysdeps/pthread/timer_delete.c
+++ b/libc/nptl/sysdeps/pthread/timer_delete.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; see the file COPYING.LIB. 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; see the file COPYING.LIB. If
+ not, see <http://www.gnu.org/licenses/>. */
#include <assert.h>
#include <errno.h>
diff --git a/libc/nptl/sysdeps/pthread/timer_getoverr.c b/libc/nptl/sysdeps/pthread/timer_getoverr.c
index f3e22215b..6d753e30d 100644
--- a/libc/nptl/sysdeps/pthread/timer_getoverr.c
+++ b/libc/nptl/sysdeps/pthread/timer_getoverr.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; see the file COPYING.LIB. 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; see the file COPYING.LIB. If
+ not, see <http://www.gnu.org/licenses/>. */
#include <errno.h>
#include <pthread.h>
diff --git a/libc/nptl/sysdeps/pthread/timer_gettime.c b/libc/nptl/sysdeps/pthread/timer_gettime.c
index 723a61632..6bd2b84e2 100644
--- a/libc/nptl/sysdeps/pthread/timer_gettime.c
+++ b/libc/nptl/sysdeps/pthread/timer_gettime.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; see the file COPYING.LIB. 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; see the file COPYING.LIB. If
+ not, see <http://www.gnu.org/licenses/>. */
#include <errno.h>
#include <pthread.h>
diff --git a/libc/nptl/sysdeps/pthread/timer_routines.c b/libc/nptl/sysdeps/pthread/timer_routines.c
index 8d5b1d13a..f99d7d4dd 100644
--- a/libc/nptl/sysdeps/pthread/timer_routines.c
+++ b/libc/nptl/sysdeps/pthread/timer_routines.c
@@ -14,9 +14,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; see the file COPYING.LIB. 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; see the file COPYING.LIB. If
+ not, see <http://www.gnu.org/licenses/>. */
#include <assert.h>
#include <errno.h>
diff --git a/libc/nptl/sysdeps/pthread/timer_settime.c b/libc/nptl/sysdeps/pthread/timer_settime.c
index 592b5271b..da0908b0b 100644
--- a/libc/nptl/sysdeps/pthread/timer_settime.c
+++ b/libc/nptl/sysdeps/pthread/timer_settime.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; see the file COPYING.LIB. 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; see the file COPYING.LIB. If
+ not, see <http://www.gnu.org/licenses/>. */
#include <errno.h>
#include <pthread.h>
diff --git a/libc/nptl/sysdeps/pthread/tst-timer.c b/libc/nptl/sysdeps/pthread/tst-timer.c
index f19fe364b..84eef79a0 100644
--- a/libc/nptl/sysdeps/pthread/tst-timer.c
+++ b/libc/nptl/sysdeps/pthread/tst-timer.c
@@ -14,9 +14,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; see the file COPYING.LIB. 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; see the file COPYING.LIB. If
+ not, see <http://www.gnu.org/licenses/>. */
#include <errno.h>
#include <signal.h>
diff --git a/libc/nptl/sysdeps/pthread/unwind-forcedunwind.c b/libc/nptl/sysdeps/pthread/unwind-forcedunwind.c
index 3b27827c6..adce6e721 100644
--- a/libc/nptl/sysdeps/pthread/unwind-forcedunwind.c
+++ b/libc/nptl/sysdeps/pthread/unwind-forcedunwind.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; see the file COPYING.LIB. 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; see the file COPYING.LIB. If
+ not, see <http://www.gnu.org/licenses/>. */
#include <dlfcn.h>
#include <stdio.h>