summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-rw-r--r--src/include/c.h3
-rw-r--r--src/include/port/atomics/generic-gcc.h4
2 files changed, 4 insertions, 3 deletions
diff --git a/src/include/c.h b/src/include/c.h
index 2c61ca8aa8..aca36c757e 100644
--- a/src/include/c.h
+++ b/src/include/c.h
@@ -1132,7 +1132,8 @@ typedef union PGAlignedXLogBlock
* access to the original string and translated string, and for cases where
* immediate translation is not possible, like when initializing global
* variables.
- * http://www.gnu.org/software/autoconf/manual/gettext/Special-cases.html
+ *
+ * https://www.gnu.org/software/gettext/manual/html_node/Special-cases.html
*/
#define gettext_noop(x) (x)
diff --git a/src/include/port/atomics/generic-gcc.h b/src/include/port/atomics/generic-gcc.h
index 2d84305f26..1a3dce34ed 100644
--- a/src/include/port/atomics/generic-gcc.h
+++ b/src/include/port/atomics/generic-gcc.h
@@ -10,9 +10,9 @@
*
* Documentation:
* * Legacy __sync Built-in Functions for Atomic Memory Access
- * http://gcc.gnu.org/onlinedocs/gcc-4.8.2/gcc/_005f_005fsync-Builtins.html
+ * https://gcc.gnu.org/onlinedocs/gcc-4.8.2/gcc/_005f_005fsync-Builtins.html
* * Built-in functions for memory model aware atomic operations
- * http://gcc.gnu.org/onlinedocs/gcc-4.8.2/gcc/_005f_005fatomic-Builtins.html
+ * https://gcc.gnu.org/onlinedocs/gcc-4.8.2/gcc/_005f_005fatomic-Builtins.html
*
* src/include/port/atomics/generic-gcc.h
*