summaryrefslogtreecommitdiff
path: root/rt
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 /rt
parentaf850b1c978bdca648ef9fb141e785d75f74d9bf (diff)
Replace FSF snail mail address with URLs.
Diffstat (limited to 'rt')
-rw-r--r--rt/Makefile5
-rw-r--r--rt/aio.h5
-rw-r--r--rt/aio_cancel.c5
-rw-r--r--rt/aio_error.c5
-rw-r--r--rt/aio_fsync.c5
-rw-r--r--rt/aio_misc.c5
-rw-r--r--rt/aio_notify.c5
-rw-r--r--rt/aio_read.c5
-rw-r--r--rt/aio_return.c5
-rw-r--r--rt/aio_sigqueue.c5
-rw-r--r--rt/aio_suspend.c5
-rw-r--r--rt/aio_write.c5
-rw-r--r--rt/bits/mqueue2.h5
-rw-r--r--rt/clock_getcpuclockid.c5
-rw-r--r--rt/clock_getres.c5
-rw-r--r--rt/clock_gettime.c5
-rw-r--r--rt/clock_nanosleep.c5
-rw-r--r--rt/clock_settime.c5
-rw-r--r--rt/get_clockfreq.c5
-rw-r--r--rt/lio_listio.c5
-rw-r--r--rt/mq_close.c5
-rw-r--r--rt/mq_getattr.c5
-rw-r--r--rt/mq_notify.c5
-rw-r--r--rt/mq_open.c5
-rw-r--r--rt/mq_receive.c5
-rw-r--r--rt/mq_send.c5
-rw-r--r--rt/mq_setattr.c5
-rw-r--r--rt/mq_timedreceive.c5
-rw-r--r--rt/mq_timedsend.c5
-rw-r--r--rt/mq_unlink.c5
-rw-r--r--rt/mqueue.h5
-rw-r--r--rt/shm_open.c5
-rw-r--r--rt/shm_unlink.c5
-rw-r--r--rt/timer_create.c5
-rw-r--r--rt/timer_delete.c5
-rw-r--r--rt/timer_getoverr.c5
-rw-r--r--rt/timer_gettime.c5
-rw-r--r--rt/timer_settime.c5
-rw-r--r--rt/tst-aio.c5
-rw-r--r--rt/tst-aio2.c5
-rw-r--r--rt/tst-aio3.c5
-rw-r--r--rt/tst-aio4.c5
-rw-r--r--rt/tst-aio5.c5
-rw-r--r--rt/tst-aio6.c5
-rw-r--r--rt/tst-aio64.c5
-rw-r--r--rt/tst-aio7.c5
-rw-r--r--rt/tst-clock.c5
-rw-r--r--rt/tst-clock_nanosleep.c5
-rw-r--r--rt/tst-cpuclock1.c5
-rw-r--r--rt/tst-cpuclock2.c5
-rw-r--r--rt/tst-mqueue.h5
-rw-r--r--rt/tst-mqueue1.c5
-rw-r--r--rt/tst-mqueue2.c5
-rw-r--r--rt/tst-mqueue3.c5
-rw-r--r--rt/tst-mqueue4.c5
-rw-r--r--rt/tst-mqueue5.c5
-rw-r--r--rt/tst-mqueue6.c5
-rw-r--r--rt/tst-mqueue7.c5
-rw-r--r--rt/tst-mqueue8.c5
-rw-r--r--rt/tst-mqueue9.c5
-rw-r--r--rt/tst-shm.c5
-rw-r--r--rt/tst-timer.c5
-rw-r--r--rt/tst-timer4.c5
63 files changed, 126 insertions, 189 deletions
diff --git a/rt/Makefile b/rt/Makefile
index a1700adf50..14a2df3903 100644
--- a/rt/Makefile
+++ b/rt/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/>.
#
# Sub-makefile for real-time portion of the library.
diff --git a/rt/aio.h b/rt/aio.h
index 644bbe93dd..898a1e2db4 100644
--- a/rt/aio.h
+++ b/rt/aio.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/IEC 9945-1:1996 6.7: Asynchronous Input and Output
diff --git a/rt/aio_cancel.c b/rt/aio_cancel.c
index c24a2f7529..e6af7afa6a 100644
--- a/rt/aio_cancel.c
+++ b/rt/aio_cancel.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/>. */
/* We use an UGLY hack to prevent gcc from finding us cheating. The
diff --git a/rt/aio_error.c b/rt/aio_error.c
index 772d49be2a..268dbdd1fc 100644
--- a/rt/aio_error.c
+++ b/rt/aio_error.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; 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 use an UGLY hack to prevent gcc from finding us cheating. The
diff --git a/rt/aio_fsync.c b/rt/aio_fsync.c
index bc23d75f69..3893e07576 100644
--- a/rt/aio_fsync.c
+++ b/rt/aio_fsync.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/>. */
/* We use an UGLY hack to prevent gcc from finding us cheating. The
diff --git a/rt/aio_misc.c b/rt/aio_misc.c
index c29b8d0eae..46b30b6229 100644
--- a/rt/aio_misc.c
+++ b/rt/aio_misc.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 <aio.h>
#include <aio_misc.h>
diff --git a/rt/aio_notify.c b/rt/aio_notify.c
index 2c79ee6c2f..9f2b46e813 100644
--- a/rt/aio_notify.c
+++ b/rt/aio_notify.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 <aio.h>
#include <aio_misc.h>
diff --git a/rt/aio_read.c b/rt/aio_read.c
index db1d19f3d7..213a43ce9b 100644
--- a/rt/aio_read.c
+++ b/rt/aio_read.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 <aio.h>
#include <errno.h>
diff --git a/rt/aio_return.c b/rt/aio_return.c
index 91da28c4c3..a43c195085 100644
--- a/rt/aio_return.c
+++ b/rt/aio_return.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; 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 use an UGLY hack to prevent gcc from finding us cheating. The
diff --git a/rt/aio_sigqueue.c b/rt/aio_sigqueue.c
index 0e3ba1f90b..c3d7adb820 100644
--- a/rt/aio_sigqueue.c
+++ b/rt/aio_sigqueue.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 <aio.h>
#include <errno.h>
diff --git a/rt/aio_suspend.c b/rt/aio_suspend.c
index 0530f0019c..ce882fb82e 100644
--- a/rt/aio_suspend.c
+++ b/rt/aio_suspend.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/>. */
/* We use an UGLY hack to prevent gcc from finding us cheating. The
diff --git a/rt/aio_write.c b/rt/aio_write.c
index bc62fcb469..398e9dbd57 100644
--- a/rt/aio_write.c
+++ b/rt/aio_write.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 <aio.h>
#include <errno.h>
diff --git a/rt/bits/mqueue2.h b/rt/bits/mqueue2.h
index aa9f126aa6..87365304c2 100644
--- a/rt/bits/mqueue2.h
+++ b/rt/bits/mqueue2.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 _FCNTL_H
# error "Never include <bits/mqueue2.h> directly; use <mqueue.h> instead."
diff --git a/rt/clock_getcpuclockid.c b/rt/clock_getcpuclockid.c
index 39c7e55f66..08972f54fd 100644
--- a/rt/clock_getcpuclockid.c
+++ b/rt/clock_getcpuclockid.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 <time.h>
diff --git a/rt/clock_getres.c b/rt/clock_getres.c
index f5978da380..576c9bf738 100644
--- a/rt/clock_getres.c
+++ b/rt/clock_getres.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 <time.h>
diff --git a/rt/clock_gettime.c b/rt/clock_gettime.c
index ff306120ba..1203f01179 100644
--- a/rt/clock_gettime.c
+++ b/rt/clock_gettime.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 <time.h>
diff --git a/rt/clock_nanosleep.c b/rt/clock_nanosleep.c
index cff1c2570a..954a615018 100644
--- a/rt/clock_nanosleep.c
+++ b/rt/clock_nanosleep.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 <sys/time.h>
diff --git a/rt/clock_settime.c b/rt/clock_settime.c
index 9d6a92e058..3b3c3c48d5 100644
--- a/rt/clock_settime.c
+++ b/rt/clock_settime.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 <time.h>
diff --git a/rt/get_clockfreq.c b/rt/get_clockfreq.c
index 14375ec186..e626e26cea 100644
--- a/rt/get_clockfreq.c
+++ b/rt/get_clockfreq.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 <libc-internal.h>
diff --git a/rt/lio_listio.c b/rt/lio_listio.c
index d535594492..867a20eca7 100644
--- a/rt/lio_listio.c
+++ b/rt/lio_listio.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 <aio.h>
#include <errno.h>
diff --git a/rt/mq_close.c b/rt/mq_close.c
index 8237a6438e..9c5f9bfd61 100644
--- a/rt/mq_close.c
+++ b/rt/mq_close.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 <mqueue.h>
diff --git a/rt/mq_getattr.c b/rt/mq_getattr.c
index 2d24b85d47..3c35fdd6da 100644
--- a/rt/mq_getattr.c
+++ b/rt/mq_getattr.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 <mqueue.h>
diff --git a/rt/mq_notify.c b/rt/mq_notify.c
index 29de75a471..7b89a65434 100644
--- a/rt/mq_notify.c
+++ b/rt/mq_notify.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 <mqueue.h>
diff --git a/rt/mq_open.c b/rt/mq_open.c
index 77d872ea20..d7986fbc0b 100644
--- a/rt/mq_open.c
+++ b/rt/mq_open.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 <mqueue.h>
diff --git a/rt/mq_receive.c b/rt/mq_receive.c
index 527fd75963..c72802f365 100644
--- a/rt/mq_receive.c
+++ b/rt/mq_receive.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 <mqueue.h>
diff --git a/rt/mq_send.c b/rt/mq_send.c
index 8b7cd87f7f..748ee41620 100644
--- a/rt/mq_send.c
+++ b/rt/mq_send.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 <mqueue.h>
diff --git a/rt/mq_setattr.c b/rt/mq_setattr.c
index 57ee0759ab..58a1e34aaa 100644
--- a/rt/mq_setattr.c
+++ b/rt/mq_setattr.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 <mqueue.h>
diff --git a/rt/mq_timedreceive.c b/rt/mq_timedreceive.c
index e4723f812a..6c3188a06f 100644
--- a/rt/mq_timedreceive.c
+++ b/rt/mq_timedreceive.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 <mqueue.h>
diff --git a/rt/mq_timedsend.c b/rt/mq_timedsend.c
index 5ccfe23b0a..a3590c35f7 100644
--- a/rt/mq_timedsend.c
+++ b/rt/mq_timedsend.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 <mqueue.h>
diff --git a/rt/mq_unlink.c b/rt/mq_unlink.c
index e947b84f3b..f9f9733683 100644
--- a/rt/mq_unlink.c
+++ b/rt/mq_unlink.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 <mqueue.h>
diff --git a/rt/mqueue.h b/rt/mqueue.h
index ffdf140115..b80d7491b2 100644
--- a/rt/mqueue.h
+++ b/rt/mqueue.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 _MQUEUE_H
#define _MQUEUE_H 1
diff --git a/rt/shm_open.c b/rt/shm_open.c
index 6a53903a75..03a67e8ca8 100644
--- a/rt/shm_open.c
+++ b/rt/shm_open.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 <sys/mman.h>
diff --git a/rt/shm_unlink.c b/rt/shm_unlink.c
index 28478b895b..4183577768 100644
--- a/rt/shm_unlink.c
+++ b/rt/shm_unlink.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 <sys/mman.h>
diff --git a/rt/timer_create.c b/rt/timer_create.c
index 0e3a6b0acc..d595d6e3f6 100644
--- a/rt/timer_create.c
+++ b/rt/timer_create.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 <time.h>
diff --git a/rt/timer_delete.c b/rt/timer_delete.c
index 4be55aa322..80fb3fc5da 100644
--- a/rt/timer_delete.c
+++ b/rt/timer_delete.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 <time.h>
diff --git a/rt/timer_getoverr.c b/rt/timer_getoverr.c
index 6ca7ff8e9e..1338de74dd 100644
--- a/rt/timer_getoverr.c
+++ b/rt/timer_getoverr.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 <time.h>
diff --git a/rt/timer_gettime.c b/rt/timer_gettime.c
index 728028ed3e..0510731771 100644
--- a/rt/timer_gettime.c
+++ b/rt/timer_gettime.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 <time.h>
diff --git a/rt/timer_settime.c b/rt/timer_settime.c
index f494a0edd1..0c5090cd5e 100644
--- a/rt/timer_settime.c
+++ b/rt/timer_settime.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 <time.h>
diff --git a/rt/tst-aio.c b/rt/tst-aio.c
index ba50bdb082..30b45672d0 100644
--- a/rt/tst-aio.c
+++ b/rt/tst-aio.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; 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 <aio.h>
#include <errno.h>
diff --git a/rt/tst-aio2.c b/rt/tst-aio2.c
index 79076396a4..897d37d8bd 100644
--- a/rt/tst-aio2.c
+++ b/rt/tst-aio2.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; 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 <aio.h>
#include <signal.h>
diff --git a/rt/tst-aio3.c b/rt/tst-aio3.c
index 95da4c1325..4d1fe8e979 100644
--- a/rt/tst-aio3.c
+++ b/rt/tst-aio3.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 <aio.h>
#include <signal.h>
diff --git a/rt/tst-aio4.c b/rt/tst-aio4.c
index 847974d502..4c7465a910 100644
--- a/rt/tst-aio4.c
+++ b/rt/tst-aio4.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 <aio.h>
#include <signal.h>
diff --git a/rt/tst-aio5.c b/rt/tst-aio5.c
index cc7152ecbd..283cf27482 100644
--- a/rt/tst-aio5.c
+++ b/rt/tst-aio5.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 <aio.h>
#include <signal.h>
diff --git a/rt/tst-aio6.c b/rt/tst-aio6.c
index ac724b01f3..cf9906418d 100644
--- a/rt/tst-aio6.c
+++ b/rt/tst-aio6.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 <aio.h>
#include <errno.h>
diff --git a/rt/tst-aio64.c b/rt/tst-aio64.c
index b6d964fd57..4eeda5b15b 100644
--- a/rt/tst-aio64.c
+++ b/rt/tst-aio64.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; 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/>. */
#define _LARGEFILE_SOURCE 1
#include <aio.h>
diff --git a/rt/tst-aio7.c b/rt/tst-aio7.c
index 39c366f8eb..327d28f1bf 100644
--- a/rt/tst-aio7.c
+++ b/rt/tst-aio7.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 <aio.h>
#include <error.h>
diff --git a/rt/tst-clock.c b/rt/tst-clock.c
index f2f18874a5..2023cbc6d1 100644
--- a/rt/tst-clock.c
+++ b/rt/tst-clock.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; 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 <string.h>
diff --git a/rt/tst-clock_nanosleep.c b/rt/tst-clock_nanosleep.c
index 98a8b5f57c..a2d1f00853 100644
--- a/rt/tst-clock_nanosleep.c
+++ b/rt/tst-clock_nanosleep.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 <stdio.h>
diff --git a/rt/tst-cpuclock1.c b/rt/tst-cpuclock1.c
index 024df63141..9d68ec5203 100644
--- a/rt/tst-cpuclock1.c
+++ b/rt/tst-cpuclock1.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 <stdio.h>
#include <stdlib.h>
diff --git a/rt/tst-cpuclock2.c b/rt/tst-cpuclock2.c
index d1621f3d01..d08dc62118 100644
--- a/rt/tst-cpuclock2.c
+++ b/rt/tst-cpuclock2.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 <unistd.h>
diff --git a/rt/tst-mqueue.h b/rt/tst-mqueue.h
index 8e73be51ce..1401c3e03c 100644
--- a/rt/tst-mqueue.h
+++ b/rt/tst-mqueue.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/>. */
#include <mqueue.h>
#include <search.h>
diff --git a/rt/tst-mqueue1.c b/rt/tst-mqueue1.c
index 9c5d940f99..82a62de445 100644
--- a/rt/tst-mqueue1.c
+++ b/rt/tst-mqueue1.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; 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 <fcntl.h>
diff --git a/rt/tst-mqueue2.c b/rt/tst-mqueue2.c
index 1948965c68..9fbaedd907 100644
--- a/rt/tst-mqueue2.c
+++ b/rt/tst-mqueue2.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; 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 <fcntl.h>
diff --git a/rt/tst-mqueue3.c b/rt/tst-mqueue3.c
index 990e05728f..5686f43f7b 100644
--- a/rt/tst-mqueue3.c
+++ b/rt/tst-mqueue3.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; 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 <mqueue.h>
diff --git a/rt/tst-mqueue4.c b/rt/tst-mqueue4.c
index aa31706f87..87ef0c3c01 100644
--- a/rt/tst-mqueue4.c
+++ b/rt/tst-mqueue4.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; 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 <fcntl.h>
diff --git a/rt/tst-mqueue5.c b/rt/tst-mqueue5.c
index 97571da8ab..58e2ebfb4d 100644
--- a/rt/tst-mqueue5.c
+++ b/rt/tst-mqueue5.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; 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 <fcntl.h>
diff --git a/rt/tst-mqueue6.c b/rt/tst-mqueue6.c
index 5c9ee69e1b..8d84c1929c 100644
--- a/rt/tst-mqueue6.c
+++ b/rt/tst-mqueue6.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; 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 <fcntl.h>
diff --git a/rt/tst-mqueue7.c b/rt/tst-mqueue7.c
index 34222f8345..e8d53ad83f 100644
--- a/rt/tst-mqueue7.c
+++ b/rt/tst-mqueue7.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; 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 <fcntl.h>
diff --git a/rt/tst-mqueue8.c b/rt/tst-mqueue8.c
index 7e902aa601..b80e4e5c32 100644
--- a/rt/tst-mqueue8.c
+++ b/rt/tst-mqueue8.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 <mqueue.h>
diff --git a/rt/tst-mqueue9.c b/rt/tst-mqueue9.c
index fb057d4adc..7098b847ee 100644
--- a/rt/tst-mqueue9.c
+++ b/rt/tst-mqueue9.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 <mqueue.h>
diff --git a/rt/tst-shm.c b/rt/tst-shm.c
index 5838b0ee1d..92593bd273 100644
--- a/rt/tst-shm.c
+++ b/rt/tst-shm.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; 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 <error.h>
diff --git a/rt/tst-timer.c b/rt/tst-timer.c
index d9b69a2467..3ab87f1089 100644
--- a/rt/tst-timer.c
+++ b/rt/tst-timer.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 <unistd.h>
diff --git a/rt/tst-timer4.c b/rt/tst-timer4.c
index 5bec01181d..fafb5651b1 100644
--- a/rt/tst-timer4.c
+++ b/rt/tst-timer4.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>