mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-12-22 07:30:54 +00:00
13 lines
260 B
C
13 lines
260 B
C
|
/****************************************************************
|
||
|
*
|
||
|
* stdnoreturn.h - macro for _Noreturn
|
||
|
*
|
||
|
****************************************************************/
|
||
|
|
||
|
#ifndef __stdnoreturn__
|
||
|
#define __stdnoreturn__
|
||
|
|
||
|
#define noreturn _Noreturn
|
||
|
|
||
|
#endif
|