mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-06 23:02:10 +03:00
remove all remaining redundant __restrict/__inline/_Noreturn defs
This commit is contained in:
parent
b7afd7a7ec
commit
455f96857f
@ -5,12 +5,7 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if __STDC_VERSION__ >= 199901L
|
#include <features.h>
|
||||||
#define __restrict restrict
|
|
||||||
#elif !defined(__GNUC__)
|
|
||||||
#define __restrict
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <netinet/in.h>
|
#include <netinet/in.h>
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
|
|
||||||
|
@ -1,12 +1,9 @@
|
|||||||
#ifndef _BYTESWAP_H
|
#ifndef _BYTESWAP_H
|
||||||
#define _BYTESWAP_H
|
#define _BYTESWAP_H
|
||||||
|
|
||||||
|
#include <features.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
#if __STDC_VERSION__ >= 199901L || defined(__cplusplus)
|
|
||||||
#define __inline inline
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static __inline uint16_t __bswap_16(uint16_t __x)
|
static __inline uint16_t __bswap_16(uint16_t __x)
|
||||||
{
|
{
|
||||||
return __x<<8 | __x>>8;
|
return __x<<8 | __x>>8;
|
||||||
|
@ -5,11 +5,7 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if __STDC_VERSION__ >= 199901L
|
#include <features.h>
|
||||||
#define __restrict restrict
|
|
||||||
#elif !defined(__GNUC__)
|
|
||||||
#define __restrict
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define __NEED_size_t
|
#define __NEED_size_t
|
||||||
|
|
||||||
|
@ -5,17 +5,12 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include <features.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
#define __NEED_wchar_t
|
#define __NEED_wchar_t
|
||||||
#include <bits/alltypes.h>
|
#include <bits/alltypes.h>
|
||||||
|
|
||||||
#if __STDC_VERSION__ >= 199901L
|
|
||||||
#define __restrict restrict
|
|
||||||
#elif !defined(__GNUC__)
|
|
||||||
#define __restrict
|
|
||||||
#endif
|
|
||||||
|
|
||||||
typedef struct { intmax_t quot, rem; } imaxdiv_t;
|
typedef struct { intmax_t quot, rem; } imaxdiv_t;
|
||||||
|
|
||||||
intmax_t imaxabs(intmax_t);
|
intmax_t imaxabs(intmax_t);
|
||||||
|
@ -5,11 +5,7 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if __STDC_VERSION__ >= 199901L
|
#include <features.h>
|
||||||
#define __restrict restrict
|
|
||||||
#elif !defined(__GNUC__)
|
|
||||||
#define __restrict
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define __NEED_ssize_t
|
#define __NEED_ssize_t
|
||||||
#define __NEED_size_t
|
#define __NEED_size_t
|
||||||
|
@ -4,11 +4,7 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if __STDC_VERSION__ >= 199901L
|
#include <features.h>
|
||||||
#define __restrict restrict
|
|
||||||
#elif !defined(__GNUC__)
|
|
||||||
#define __restrict
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define __NEED_size_t
|
#define __NEED_size_t
|
||||||
#define __NEED_ssize_t
|
#define __NEED_ssize_t
|
||||||
|
@ -4,18 +4,7 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if __STDC_VERSION__ >= 199901L
|
#include <features.h>
|
||||||
#define __restrict restrict
|
|
||||||
#elif !defined(__GNUC__)
|
|
||||||
#define __restrict
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if __STDC_VERSION__ >= 201112L
|
|
||||||
#elif defined(__GNUC__)
|
|
||||||
#define _Noreturn __attribute__((__noreturn__))
|
|
||||||
#else
|
|
||||||
#define _Noreturn
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define __NEED_time_t
|
#define __NEED_time_t
|
||||||
#define __NEED_clockid_t
|
#define __NEED_clockid_t
|
||||||
|
@ -5,11 +5,7 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if __STDC_VERSION__ >= 199901L
|
#include <features.h>
|
||||||
#define __restrict restrict
|
|
||||||
#elif !defined(__GNUC__)
|
|
||||||
#define __restrict
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define __NEED_size_t
|
#define __NEED_size_t
|
||||||
|
|
||||||
|
@ -4,11 +4,7 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if __STDC_VERSION__ >= 199901L
|
#include <features.h>
|
||||||
#define __restrict restrict
|
|
||||||
#elif !defined(__GNUC__)
|
|
||||||
#define __restrict
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define __NEED_time_t
|
#define __NEED_time_t
|
||||||
#define __NEED_struct_timespec
|
#define __NEED_struct_timespec
|
||||||
|
@ -5,11 +5,7 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if __STDC_VERSION__ >= 199901L
|
#include <features.h>
|
||||||
#define __restrict restrict
|
|
||||||
#elif !defined(__GNUC__)
|
|
||||||
#define __restrict
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define __NEED_mode_t
|
#define __NEED_mode_t
|
||||||
#define __NEED_pid_t
|
#define __NEED_pid_t
|
||||||
|
@ -4,11 +4,7 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if __STDC_VERSION__ >= 199901L
|
#include <features.h>
|
||||||
#define __restrict restrict
|
|
||||||
#elif !defined(__GNUC__)
|
|
||||||
#define __restrict
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define __NEED_size_t
|
#define __NEED_size_t
|
||||||
#define __NEED_time_t
|
#define __NEED_time_t
|
||||||
|
@ -4,11 +4,7 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if __STDC_VERSION__ >= 199901L
|
#include <features.h>
|
||||||
#define __restrict restrict
|
|
||||||
#elif !defined(__GNUC__)
|
|
||||||
#define __restrict
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define __NEED_socklen_t
|
#define __NEED_socklen_t
|
||||||
#define __NEED_sa_family_t
|
#define __NEED_sa_family_t
|
||||||
|
@ -4,9 +4,7 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if __STDC_VERSION__ >= 199901L || defined(__cplusplus)
|
#include <features.h>
|
||||||
#define __inline inline
|
|
||||||
#endif
|
|
||||||
|
|
||||||
long __syscall_ret(unsigned long);
|
long __syscall_ret(unsigned long);
|
||||||
long __syscall(long, ...);
|
long __syscall(long, ...);
|
||||||
|
@ -5,11 +5,7 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if __STDC_VERSION__ >= 199901L
|
#include <features.h>
|
||||||
#define __restrict restrict
|
|
||||||
#elif !defined(__GNUC__)
|
|
||||||
#define __restrict
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define __NEED_size_t
|
#define __NEED_size_t
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user