mirror of
https://github.com/fluencelabs/musl
synced 2025-06-12 22:41:37 +00:00
remove all remaining redundant __restrict/__inline/_Noreturn defs
This commit is contained in:
@ -1,12 +1,9 @@
|
||||
#ifndef _BYTESWAP_H
|
||||
#define _BYTESWAP_H
|
||||
|
||||
#include <features.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#if __STDC_VERSION__ >= 199901L || defined(__cplusplus)
|
||||
#define __inline inline
|
||||
#endif
|
||||
|
||||
static __inline uint16_t __bswap_16(uint16_t __x)
|
||||
{
|
||||
return __x<<8 | __x>>8;
|
||||
|
Reference in New Issue
Block a user