mirror of
https://github.com/mintsuki/freestanding-headers
synced 2024-11-21 20:11:18 +03:00
Misc compliance fixes
This commit is contained in:
parent
63628075fa
commit
07a9145f39
4
iso646.h
4
iso646.h
@ -1,5 +1,5 @@
|
||||
#ifndef __ISO646_H__
|
||||
#define __ISO646_H__
|
||||
#ifndef _ISO646_H
|
||||
#define _ISO646_H 1
|
||||
|
||||
#define and &&
|
||||
#define and_eq &=
|
||||
|
@ -1,8 +1,8 @@
|
||||
#ifndef __STDALIGN_H__
|
||||
#define __STDALIGN_H__
|
||||
#ifndef _STDALIGN_H
|
||||
#define _STDALIGN_H 1
|
||||
|
||||
#define alignas(a) _Alignas(a)
|
||||
#define alignof(t) _Alignof(t)
|
||||
#define alignas _Alignas
|
||||
#define alignof _Alignof
|
||||
|
||||
#define __alignas_is_defined 1
|
||||
#define __alignof_is_defined 1
|
||||
|
4
stdarg.h
4
stdarg.h
@ -1,5 +1,5 @@
|
||||
#ifndef __STDARG_H__
|
||||
#define __STDARG_H__
|
||||
#ifndef _STDARG_H
|
||||
#define _STDARG_H 1
|
||||
|
||||
typedef __builtin_va_list va_list;
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef __STDBOOL_H__
|
||||
#define __STDBOOL_H__
|
||||
#ifndef _STDBOOL_H
|
||||
#define _STDBOOL_H 1
|
||||
|
||||
#define bool _Bool
|
||||
|
||||
|
4
stddef.h
4
stddef.h
@ -1,5 +1,5 @@
|
||||
#ifndef __STDDEF_H__
|
||||
#define __STDDEF_H__
|
||||
#ifndef _STDDEF_H
|
||||
#define _STDDEF_H 1
|
||||
|
||||
typedef __SIZE_TYPE__ size_t;
|
||||
typedef __PTRDIFF_TYPE__ ptrdiff_t;
|
||||
|
4
stdint.h
4
stdint.h
@ -1,5 +1,5 @@
|
||||
#ifndef __STDINT_H__
|
||||
#define __STDINT_H__
|
||||
#ifndef _STDINT_H
|
||||
#define _STDINT_H 1
|
||||
|
||||
typedef __UINT8_TYPE__ uint8_t;
|
||||
typedef __UINT16_TYPE__ uint16_t;
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef __STDNORETURN_H__
|
||||
#define __STDNORETURN_H__
|
||||
#ifndef _STDNORETURN_H
|
||||
#define _STDNORETURN_H 1
|
||||
|
||||
#define noreturn _Noreturn
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user