diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-09-08 17:14:52 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-09-08 17:14:52 -0400 |
commit | 455f96857f91d14e193219ca00969354a981c09c (patch) | |
tree | 82c387b652bbc5492693be147a904bf98d69954a /include/byteswap.h | |
parent | b7afd7a7ec95fdc98dd31078891a9563d6f4ac73 (diff) | |
download | musl-455f96857f91d14e193219ca00969354a981c09c.tar.gz musl-455f96857f91d14e193219ca00969354a981c09c.tar.bz2 musl-455f96857f91d14e193219ca00969354a981c09c.tar.xz musl-455f96857f91d14e193219ca00969354a981c09c.zip |
remove all remaining redundant __restrict/__inline/_Noreturn defs
Diffstat (limited to 'include/byteswap.h')
-rw-r--r-- | include/byteswap.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/byteswap.h b/include/byteswap.h index bf222d3c..00b9df3c 100644 --- a/include/byteswap.h +++ b/include/byteswap.h @@ -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; |