about summary refs log tree commit diff
path: root/termios
diff options
context:
space:
mode:
Diffstat (limited to 'termios')
-rw-r--r--termios/Makefile2
-rw-r--r--termios/cfmakeraw.c2
-rw-r--r--termios/cfsetspeed.c2
-rw-r--r--termios/speed.c2
-rw-r--r--termios/tcdrain.c2
-rw-r--r--termios/tcflow.c2
-rw-r--r--termios/tcflush.c2
-rw-r--r--termios/tcgetattr.c2
-rw-r--r--termios/tcgetpgrp.c2
-rw-r--r--termios/tcgetsid.c2
-rw-r--r--termios/tcsendbrk.c2
-rw-r--r--termios/tcsetattr.c2
-rw-r--r--termios/tcsetpgrp.c2
-rw-r--r--termios/termios.h2
14 files changed, 14 insertions, 14 deletions
diff --git a/termios/Makefile b/termios/Makefile
index 5ae7b8a104..ac3bf0d09c 100644
--- a/termios/Makefile
+++ b/termios/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/>.
 
 #
 #	Makefile for the terminal I/O functions.
diff --git a/termios/cfmakeraw.c b/termios/cfmakeraw.c
index baedc8cf0e..89d65bb3e2 100644
--- a/termios/cfmakeraw.c
+++ b/termios/cfmakeraw.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 <termios.h>
 
diff --git a/termios/cfsetspeed.c b/termios/cfsetspeed.c
index 0a86f4ee1a..f207ada2bd 100644
--- a/termios/cfsetspeed.c
+++ b/termios/cfsetspeed.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 <termios.h>
 #include <errno.h>
diff --git a/termios/speed.c b/termios/speed.c
index 339b1348f3..875bbe482b 100644
--- a/termios/speed.c
+++ b/termios/speed.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 <stddef.h>
 #include <errno.h>
diff --git a/termios/tcdrain.c b/termios/tcdrain.c
index 067d8fff4d..37268157dd 100644
--- a/termios/tcdrain.c
+++ b/termios/tcdrain.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 <termios.h>
diff --git a/termios/tcflow.c b/termios/tcflow.c
index b8955f71d7..75804218ae 100644
--- a/termios/tcflow.c
+++ b/termios/tcflow.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 <termios.h>
diff --git a/termios/tcflush.c b/termios/tcflush.c
index 6a6d08fc4d..e0b69ba469 100644
--- a/termios/tcflush.c
+++ b/termios/tcflush.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 <termios.h>
diff --git a/termios/tcgetattr.c b/termios/tcgetattr.c
index b88186b11b..a111aa203b 100644
--- a/termios/tcgetattr.c
+++ b/termios/tcgetattr.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 <stddef.h>
diff --git a/termios/tcgetpgrp.c b/termios/tcgetpgrp.c
index e74027970c..f31d44eb51 100644
--- a/termios/tcgetpgrp.c
+++ b/termios/tcgetpgrp.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 <unistd.h>
diff --git a/termios/tcgetsid.c b/termios/tcgetsid.c
index 70ce509c44..c68c4fa9c2 100644
--- a/termios/tcgetsid.c
+++ b/termios/tcgetsid.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 <termios.h>
diff --git a/termios/tcsendbrk.c b/termios/tcsendbrk.c
index 07514f5838..dde2cc1efb 100644
--- a/termios/tcsendbrk.c
+++ b/termios/tcsendbrk.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 <termios.h>
diff --git a/termios/tcsetattr.c b/termios/tcsetattr.c
index 9c56eb2765..6768c73c46 100644
--- a/termios/tcsetattr.c
+++ b/termios/tcsetattr.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 <stddef.h>
diff --git a/termios/tcsetpgrp.c b/termios/tcsetpgrp.c
index 2659bf6549..f478bdeed6 100644
--- a/termios/tcsetpgrp.c
+++ b/termios/tcsetpgrp.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 <unistd.h>
diff --git a/termios/termios.h b/termios/termios.h
index 223420883d..6882cb2f1c 100644
--- a/termios/termios.h
+++ b/termios/termios.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/>.  */
 
 /*
  *	POSIX Standard: 7.1-2 General Terminal Interface	<termios.h>