aboutsummaryrefslogtreecommitdiff
path: root/rt
diff options
context:
space:
mode:
Diffstat (limited to 'rt')
-rw-r--r--rt/Makefile2
-rw-r--r--rt/aio.h2
-rw-r--r--rt/aio_cancel.c2
-rw-r--r--rt/aio_error.c2
-rw-r--r--rt/aio_fsync.c2
-rw-r--r--rt/aio_misc.c2
-rw-r--r--rt/aio_notify.c2
-rw-r--r--rt/aio_read.c2
-rw-r--r--rt/aio_return.c2
-rw-r--r--rt/aio_sigqueue.c2
-rw-r--r--rt/aio_suspend.c2
-rw-r--r--rt/aio_write.c2
-rw-r--r--rt/bits/mqueue2.h2
-rw-r--r--rt/lio_listio.c2
-rw-r--r--rt/mq_close.c2
-rw-r--r--rt/mq_getattr.c2
-rw-r--r--rt/mq_notify.c2
-rw-r--r--rt/mq_open.c2
-rw-r--r--rt/mq_receive.c2
-rw-r--r--rt/mq_send.c2
-rw-r--r--rt/mq_setattr.c2
-rw-r--r--rt/mq_timedreceive.c2
-rw-r--r--rt/mq_timedsend.c2
-rw-r--r--rt/mq_unlink.c2
-rw-r--r--rt/mqueue.h2
-rw-r--r--rt/shm_open.c2
-rw-r--r--rt/shm_unlink.c2
-rw-r--r--rt/timer_create.c2
-rw-r--r--rt/timer_delete.c2
-rw-r--r--rt/timer_getoverr.c2
-rw-r--r--rt/timer_gettime.c2
-rw-r--r--rt/timer_settime.c2
-rw-r--r--rt/tst-aio.c2
-rw-r--r--rt/tst-aio2.c2
-rw-r--r--rt/tst-aio3.c2
-rw-r--r--rt/tst-aio4.c2
-rw-r--r--rt/tst-aio5.c2
-rw-r--r--rt/tst-aio6.c2
-rw-r--r--rt/tst-aio64.c2
-rw-r--r--rt/tst-aio7.c2
-rw-r--r--rt/tst-cpuclock2.c2
-rw-r--r--rt/tst-mqueue.h2
-rw-r--r--rt/tst-mqueue1.c2
-rw-r--r--rt/tst-mqueue2.c2
-rw-r--r--rt/tst-mqueue3.c2
-rw-r--r--rt/tst-mqueue4.c2
-rw-r--r--rt/tst-mqueue5.c2
-rw-r--r--rt/tst-mqueue6.c2
-rw-r--r--rt/tst-mqueue7.c2
-rw-r--r--rt/tst-mqueue8.c2
-rw-r--r--rt/tst-mqueue9.c2
-rw-r--r--rt/tst-shm-cancel.c2
-rw-r--r--rt/tst-shm.c2
-rw-r--r--rt/tst-timer.c2
-rw-r--r--rt/tst-timer4.c2
55 files changed, 55 insertions, 55 deletions
diff --git a/rt/Makefile b/rt/Makefile
index e6fbc32..2bc4160 100644
--- a/rt/Makefile
+++ b/rt/Makefile
@@ -13,7 +13,7 @@
# You should have received a copy of the GNU Lesser General Public
# License along with the GNU C Library; if not, see
-# <http://www.gnu.org/licenses/>.
+# <https://www.gnu.org/licenses/>.
#
# Sub-makefile for real-time portion of the library.
diff --git a/rt/aio.h b/rt/aio.h
index d1b97bf..988ac76 100644
--- a/rt/aio.h
+++ b/rt/aio.h
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://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 2087cc3..9abde1b 100644
--- a/rt/aio_cancel.c
+++ b/rt/aio_cancel.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://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 d44cce2..e73378f 100644
--- a/rt/aio_error.c
+++ b/rt/aio_error.c
@@ -15,7 +15,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://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 981daf6..265bce1 100644
--- a/rt/aio_fsync.c
+++ b/rt/aio_fsync.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://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 873faa4..2fa48de 100644
--- a/rt/aio_misc.c
+++ b/rt/aio_misc.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <aio.h>
#include <aio_misc.h>
diff --git a/rt/aio_notify.c b/rt/aio_notify.c
index 59f1272..9a02cfd 100644
--- a/rt/aio_notify.c
+++ b/rt/aio_notify.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <aio.h>
#include <aio_misc.h>
diff --git a/rt/aio_read.c b/rt/aio_read.c
index c3cffa1..7386c9d 100644
--- a/rt/aio_read.c
+++ b/rt/aio_read.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <aio.h>
#include <errno.h>
diff --git a/rt/aio_return.c b/rt/aio_return.c
index cdc000e..32e583c 100644
--- a/rt/aio_return.c
+++ b/rt/aio_return.c
@@ -15,7 +15,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://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 5a7fd4d..fb3ed48 100644
--- a/rt/aio_sigqueue.c
+++ b/rt/aio_sigqueue.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <aio.h>
#include <errno.h>
diff --git a/rt/aio_suspend.c b/rt/aio_suspend.c
index ceb40de..095762b 100644
--- a/rt/aio_suspend.c
+++ b/rt/aio_suspend.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://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 1caadf1..67cb1d1 100644
--- a/rt/aio_write.c
+++ b/rt/aio_write.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <aio.h>
#include <errno.h>
diff --git a/rt/bits/mqueue2.h b/rt/bits/mqueue2.h
index f9d95db..9c187f2 100644
--- a/rt/bits/mqueue2.h
+++ b/rt/bits/mqueue2.h
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#ifndef _FCNTL_H
# error "Never include <bits/mqueue2.h> directly; use <mqueue.h> instead."
diff --git a/rt/lio_listio.c b/rt/lio_listio.c
index 4d95ad1..739d31b 100644
--- a/rt/lio_listio.c
+++ b/rt/lio_listio.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <aio.h>
#include <errno.h>
diff --git a/rt/mq_close.c b/rt/mq_close.c
index 3f774e6..ae019d7 100644
--- a/rt/mq_close.c
+++ b/rt/mq_close.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <mqueue.h>
diff --git a/rt/mq_getattr.c b/rt/mq_getattr.c
index 856597a..c4e0f7c 100644
--- a/rt/mq_getattr.c
+++ b/rt/mq_getattr.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <mqueue.h>
diff --git a/rt/mq_notify.c b/rt/mq_notify.c
index 898e32c..2f5e35f 100644
--- a/rt/mq_notify.c
+++ b/rt/mq_notify.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <mqueue.h>
diff --git a/rt/mq_open.c b/rt/mq_open.c
index 24efb41..cbf0c2b 100644
--- a/rt/mq_open.c
+++ b/rt/mq_open.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <mqueue.h>
diff --git a/rt/mq_receive.c b/rt/mq_receive.c
index 5c17a66..59f8ba1 100644
--- a/rt/mq_receive.c
+++ b/rt/mq_receive.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <mqueue.h>
diff --git a/rt/mq_send.c b/rt/mq_send.c
index 0dea8a5..6740ba8 100644
--- a/rt/mq_send.c
+++ b/rt/mq_send.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <mqueue.h>
diff --git a/rt/mq_setattr.c b/rt/mq_setattr.c
index 93f7565..79d7fea 100644
--- a/rt/mq_setattr.c
+++ b/rt/mq_setattr.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <mqueue.h>
diff --git a/rt/mq_timedreceive.c b/rt/mq_timedreceive.c
index 6e2ad62..5fc08ea 100644
--- a/rt/mq_timedreceive.c
+++ b/rt/mq_timedreceive.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <mqueue.h>
diff --git a/rt/mq_timedsend.c b/rt/mq_timedsend.c
index f375849..d0c7e96 100644
--- a/rt/mq_timedsend.c
+++ b/rt/mq_timedsend.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <mqueue.h>
diff --git a/rt/mq_unlink.c b/rt/mq_unlink.c
index 41039e2..851be88 100644
--- a/rt/mq_unlink.c
+++ b/rt/mq_unlink.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <mqueue.h>
diff --git a/rt/mqueue.h b/rt/mqueue.h
index 308a52c..5296e88 100644
--- a/rt/mqueue.h
+++ b/rt/mqueue.h
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#ifndef _MQUEUE_H
#define _MQUEUE_H 1
diff --git a/rt/shm_open.c b/rt/shm_open.c
index dd455a0..fb8af93 100644
--- a/rt/shm_open.c
+++ b/rt/shm_open.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <sys/mman.h>
diff --git a/rt/shm_unlink.c b/rt/shm_unlink.c
index 84fc331..7e1de05 100644
--- a/rt/shm_unlink.c
+++ b/rt/shm_unlink.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <sys/mman.h>
diff --git a/rt/timer_create.c b/rt/timer_create.c
index 0955abd..92555d6 100644
--- a/rt/timer_create.c
+++ b/rt/timer_create.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <time.h>
diff --git a/rt/timer_delete.c b/rt/timer_delete.c
index 409d3ea..c14d205 100644
--- a/rt/timer_delete.c
+++ b/rt/timer_delete.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <time.h>
diff --git a/rt/timer_getoverr.c b/rt/timer_getoverr.c
index 432848b..f841d85 100644
--- a/rt/timer_getoverr.c
+++ b/rt/timer_getoverr.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <time.h>
diff --git a/rt/timer_gettime.c b/rt/timer_gettime.c
index ed3eafa..26734d1 100644
--- a/rt/timer_gettime.c
+++ b/rt/timer_gettime.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <time.h>
diff --git a/rt/timer_settime.c b/rt/timer_settime.c
index 138720a..94f9e8d 100644
--- a/rt/timer_settime.c
+++ b/rt/timer_settime.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <time.h>
diff --git a/rt/tst-aio.c b/rt/tst-aio.c
index bbb76df..397e960 100644
--- a/rt/tst-aio.c
+++ b/rt/tst-aio.c
@@ -15,7 +15,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <aio.h>
#include <errno.h>
diff --git a/rt/tst-aio2.c b/rt/tst-aio2.c
index 72a716c..1ba229f 100644
--- a/rt/tst-aio2.c
+++ b/rt/tst-aio2.c
@@ -15,7 +15,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <aio.h>
#include <signal.h>
diff --git a/rt/tst-aio3.c b/rt/tst-aio3.c
index d5239b1..534248a 100644
--- a/rt/tst-aio3.c
+++ b/rt/tst-aio3.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <aio.h>
#include <signal.h>
diff --git a/rt/tst-aio4.c b/rt/tst-aio4.c
index 4146373..433edba 100644
--- a/rt/tst-aio4.c
+++ b/rt/tst-aio4.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <aio.h>
#include <signal.h>
diff --git a/rt/tst-aio5.c b/rt/tst-aio5.c
index 29b0631..c207cc5 100644
--- a/rt/tst-aio5.c
+++ b/rt/tst-aio5.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <aio.h>
#include <signal.h>
diff --git a/rt/tst-aio6.c b/rt/tst-aio6.c
index ebcf5d6..e71b126 100644
--- a/rt/tst-aio6.c
+++ b/rt/tst-aio6.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <aio.h>
#include <errno.h>
diff --git a/rt/tst-aio64.c b/rt/tst-aio64.c
index b30f652..ca37a7a 100644
--- a/rt/tst-aio64.c
+++ b/rt/tst-aio64.c
@@ -15,7 +15,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#define _LARGEFILE_SOURCE 1
#include <aio.h>
diff --git a/rt/tst-aio7.c b/rt/tst-aio7.c
index 7208d0f..f1a0eae 100644
--- a/rt/tst-aio7.c
+++ b/rt/tst-aio7.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <aio.h>
#include <error.h>
diff --git a/rt/tst-cpuclock2.c b/rt/tst-cpuclock2.c
index d853efd..663a377 100644
--- a/rt/tst-cpuclock2.c
+++ b/rt/tst-cpuclock2.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <unistd.h>
#include <stdint.h>
diff --git a/rt/tst-mqueue.h b/rt/tst-mqueue.h
index 7fde420..3743e10 100644
--- a/rt/tst-mqueue.h
+++ b/rt/tst-mqueue.h
@@ -15,7 +15,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <mqueue.h>
#include <search.h>
diff --git a/rt/tst-mqueue1.c b/rt/tst-mqueue1.c
index fb8d2e2..64eb34b 100644
--- a/rt/tst-mqueue1.c
+++ b/rt/tst-mqueue1.c
@@ -15,7 +15,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <fcntl.h>
diff --git a/rt/tst-mqueue2.c b/rt/tst-mqueue2.c
index 8be931b..4767d8d 100644
--- a/rt/tst-mqueue2.c
+++ b/rt/tst-mqueue2.c
@@ -15,7 +15,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <fcntl.h>
diff --git a/rt/tst-mqueue3.c b/rt/tst-mqueue3.c
index 966b383..0ed4377 100644
--- a/rt/tst-mqueue3.c
+++ b/rt/tst-mqueue3.c
@@ -15,7 +15,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <mqueue.h>
diff --git a/rt/tst-mqueue4.c b/rt/tst-mqueue4.c
index 9407134..ad267e7 100644
--- a/rt/tst-mqueue4.c
+++ b/rt/tst-mqueue4.c
@@ -15,7 +15,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <fcntl.h>
diff --git a/rt/tst-mqueue5.c b/rt/tst-mqueue5.c
index 85adc63..76e83a1 100644
--- a/rt/tst-mqueue5.c
+++ b/rt/tst-mqueue5.c
@@ -15,7 +15,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <fcntl.h>
diff --git a/rt/tst-mqueue6.c b/rt/tst-mqueue6.c
index 61a88ba..2438dcf 100644
--- a/rt/tst-mqueue6.c
+++ b/rt/tst-mqueue6.c
@@ -15,7 +15,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <fcntl.h>
diff --git a/rt/tst-mqueue7.c b/rt/tst-mqueue7.c
index 224fc58..52cf51b 100644
--- a/rt/tst-mqueue7.c
+++ b/rt/tst-mqueue7.c
@@ -15,7 +15,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <fcntl.h>
diff --git a/rt/tst-mqueue8.c b/rt/tst-mqueue8.c
index fdac790..0042215 100644
--- a/rt/tst-mqueue8.c
+++ b/rt/tst-mqueue8.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <mqueue.h>
diff --git a/rt/tst-mqueue9.c b/rt/tst-mqueue9.c
index ea7a3d7..4c5d89b 100644
--- a/rt/tst-mqueue9.c
+++ b/rt/tst-mqueue9.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <mqueue.h>
diff --git a/rt/tst-shm-cancel.c b/rt/tst-shm-cancel.c
index e6994e5..26ddfd2 100644
--- a/rt/tst-shm-cancel.c
+++ b/rt/tst-shm-cancel.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <pthread.h>
#include <sys/mman.h>
diff --git a/rt/tst-shm.c b/rt/tst-shm.c
index 99e45fc..6c85e01 100644
--- a/rt/tst-shm.c
+++ b/rt/tst-shm.c
@@ -15,7 +15,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <error.h>
diff --git a/rt/tst-timer.c b/rt/tst-timer.c
index f14c937..2654982 100644
--- a/rt/tst-timer.c
+++ b/rt/tst-timer.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <unistd.h>
diff --git a/rt/tst-timer4.c b/rt/tst-timer4.c
index 5e0db4a..848cba5 100644
--- a/rt/tst-timer4.c
+++ b/rt/tst-timer4.c
@@ -15,7 +15,7 @@
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, see <http://www.gnu.org/licenses/>. */
+ not, see <https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <signal.h>