vnc: consistently use builtin byteswap after b725a08b47

src/vnc.c:27:10: fatal error: 'byteswap.h' file not found
 #include <byteswap.h>
          ^~~~~~~~~~~~
pull/9/head
Jan Beich 2022-04-24 03:50:19 +00:00 committed by Andri Yngvason
parent b725a08b47
commit 83886345b1
1 changed files with 1 additions and 2 deletions

View File

@ -24,7 +24,6 @@
#include <rfb/rfbclient.h>
#include <libdrm/drm_fourcc.h>
#include <libavutil/frame.h>
#include <byteswap.h>
#include "vnc.h"
#include "open-h264.h"
@ -42,7 +41,7 @@ rfbBool vnc_client_set_format_and_encodings(rfbClient* client);
static uint64_t vnc_client_htonll(uint64_t x)
{
#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
return bswap_64(x);
return __builtin_bswap64(x);
#else
return x;
#endif