mirror of
https://github.com/privacore/open-source-search-engine.git
synced 2025-01-22 02:18:42 -05:00
12 lines
303 B
C
12 lines
303 B
C
#ifndef GB_SANITY_H
|
|
#define GB_SANITY_H
|
|
|
|
// Ugly - but so is lots of code in .h files
|
|
|
|
[[ noreturn ]] void gbshutdownAbort( bool save_on_abort );
|
|
[[ noreturn ]] void gbshutdownResourceError();
|
|
[[ noreturn ]] void gbshutdownLogicError();
|
|
[[ noreturn ]] void gbshutdownCorrupted();
|
|
|
|
#endif // GB_SANITY_H
|