add missing include

This commit is contained in:
Markus Fröschle
2017-01-15 14:17:57 +00:00
parent 9038bb15ae
commit 48bbc4cfc9
3 changed files with 9 additions and 20 deletions

View File

@@ -46,7 +46,7 @@ static inline uint16_t swpw(uint16_t w)
static inline uint32_t swpl(uint32_t l)
{
return ((l & 0xff000000) >> 24) | ((l & 0x00ff0000) >> 8) |
((l & 0x0000ff00) << 8) | (l << 24);
((l & 0x0000ff00) << 8) | (l << 24);
}