_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>
		
			
				
	
	
		
			7 lines
		
	
	
	
		
			125 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
	
		
			125 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef _STDNORETURN_H
 | 
						|
#define _STDNORETURN_H
 | 
						|
 | 
						|
/* ISOC11 noreturn */
 | 
						|
#define noreturn _Noreturn
 | 
						|
 | 
						|
#endif /* _STDNORETURN_H */
 |