<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">diff -rupN libctf/swap.h libctf.patched/swap.h
--- libctf/swap.h	2019-09-20 07:03:34.000000000 +0100
+++ libctf.patched/swap.h	2019-11-15 13:40:42.040384663 +0000
@@ -28,13 +28,13 @@
 #else
 
 /* Provide our own versions of the byteswap functions.  */
-inline uint16_t
+inline static uint16_t
 bswap_16 (uint16_t v)
 {
   return ((v &gt;&gt; 8) &amp; 0xff) | ((v &amp; 0xff) &lt;&lt; 8);
 }
 
-inline uint32_t
+inline static uint32_t
 bswap_32 (uint32_t v)
 {
   return (  ((v &amp; 0xff000000) &gt;&gt; 24)
@@ -43,13 +43,13 @@ bswap_32 (uint32_t v)
 	  | ((v &amp; 0x000000ff) &lt;&lt; 24));
 }
 
-inline uint64_t
+inline static uint64_t
 bswap_identity_64 (uint64_t v)
 {
   return v;
 }
 
-inline uint64_t
+inline static uint64_t
 bswap_64 (uint64_t v)
 {
   return (  ((v &amp; 0xff00000000000000ULL) &gt;&gt; 56)
</pre></body></html>