From 285051ed86315673b654eb39e94b1a055958dfca Mon Sep 17 00:00:00 2001 From: Gwenhael Le Moine Date: Wed, 23 Oct 2024 15:07:48 +0200 Subject: [PATCH] include --- src/byteorder.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/byteorder.h b/src/byteorder.h index c6ed2e5..35ec822 100644 --- a/src/byteorder.h +++ b/src/byteorder.h @@ -4,6 +4,7 @@ #ifndef _X49GP_BYTEORDER_H #define _X49GP_BYTEORDER_H 1 +#include #include static __inline__ uint16_t swab16( uint16_t x ) { return ( ( x & 0xff00 ) >> 8 ) | ( ( x & 0x00ff ) << 8 ); }