ExitToShell: noreturn

This commit is contained in:
Iliyas Jorio 2022-03-20 09:03:59 +01:00
parent 0581b24162
commit 010d57bf8d
1 changed files with 7 additions and 1 deletions

View File

@ -31,6 +31,12 @@ static inline float __frsqrte(float f)
#define nil NULL
#ifdef __cplusplus
#define POMME_NORETURN [[ noreturn ]]
#else
#define POMME_NORETURN _Noreturn
#endif
#ifdef __cplusplus
extern "C"
{
@ -307,7 +313,7 @@ void RestoreDeviceClut(GDHandle gdh);
//-----------------------------------------------------------------------------
// Misc
void ExitToShell();
POMME_NORETURN void ExitToShell();
void SysBeep(short duration);