mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 09:46:04 -05: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
Notes:
sideshowbarker
2024-07-19 11:10:55 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/32ff660aa58
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)
|
||||
{
|
||||
return __builtin_bswap32(x)
|
||||
return __builtin_bswap32(x);
|
||||
}
|
||||
|
||||
static __inline uint64_t __bswap64(uint64_t x)
|
||||
{
|
||||
return __builtin_bswap64(x)
|
||||
return __builtin_bswap64(x);
|
||||
}
|
||||
|
||||
#define LITTLE_ENDIAN __LITTLE_ENDIAN
|
||||
|
|
Loading…
Add table
Reference in a new issue