mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:47:35 +00:00
LibC: Oopsie, add the missing semicolons to __bswap32() and __bswap64()
Well that was a lot of flailing around.
This commit is contained in:
parent
31447d58fb
commit
32ff660aa5
1 changed files with 2 additions and 2 deletions
|
@ -25,12 +25,12 @@ static __inline uint16_t __bswap16(uint16_t x)
|
||||||
|
|
||||||
static __inline uint32_t __bswap32(uint32_t x)
|
static __inline uint32_t __bswap32(uint32_t x)
|
||||||
{
|
{
|
||||||
return __builtin_bswap32(x)
|
return __builtin_bswap32(x);
|
||||||
}
|
}
|
||||||
|
|
||||||
static __inline uint64_t __bswap64(uint64_t x)
|
static __inline uint64_t __bswap64(uint64_t x)
|
||||||
{
|
{
|
||||||
return __builtin_bswap64(x)
|
return __builtin_bswap64(x);
|
||||||
}
|
}
|
||||||
|
|
||||||
#define LITTLE_ENDIAN __LITTLE_ENDIAN
|
#define LITTLE_ENDIAN __LITTLE_ENDIAN
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue