mirror of
https://github.com/frida/tinycc
synced 2024-11-28 10:33:07 +03:00
9382a3ad58
_Noreturn, just like __attribute__((noreturn)), is ignored. I also added stdnoreturn.h, in all its glorious uselessness. _Alignas only works for integer expressions right now. In order to comply, we need: - _Alignas(type) -> _Alignas(_Alignof(type)). - stdalign.h as soon as it is done. Note: DR 444 is supported; it works on struct members. Signed-off-by: Devin Hussey <husseydevin@gmail.com>
8 lines
125 B
C
8 lines
125 B
C
#ifndef _STDNORETURN_H
|
|
#define _STDNORETURN_H
|
|
|
|
/* ISOC11 noreturn */
|
|
#define noreturn _Noreturn
|
|
|
|
#endif /* _STDNORETURN_H */
|