audio/umurmur: Remove stray files added by mistake

Reported by:	jbeich
2024Q1
Muhammad Moinur Rahman 2023-12-31 16:28:54 +01:00
parent 0e4370da11
commit 17233191c8
1 changed files with 0 additions and 13 deletions

View File

@ -1,13 +0,0 @@
--- src/byteorder.h.orig 2021-03-21 20:49:04 UTC
+++ src/byteorder.h
@@ -56,8 +56,10 @@ typedef uint64_t subblock;
#elif defined( __x86_64__)
#define SWAPPED(x) ({register uint64_t __out, __in = (x); __asm__("bswap %q0" : "=r"(__out) : "0"(__in)); __out;})
#else
+#if defined(__linux__)
#include <byteswap.h>
#define SWAPPED(x) bswap_64(x)
+#endif // defined(__linux__)
#endif // defined(BYTE_ORDER_BIG_ENDIAN)
#else
#define BLOCKSIZE 4