diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/LibNectar/base_process.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/include/LibNectar/base_process.h b/include/LibNectar/base_process.h index 358dd70..80ef299 100644 --- a/include/LibNectar/base_process.h +++ b/include/LibNectar/base_process.h @@ -25,20 +25,20 @@ extern size_t __atexit_lst_cnt; __fini_decl() -inline int signal(int code) { - signal_(code); - return -1; + inline int signal(int code) { + signal_(code); + return -1; } inline int32_t exit(const int32_t& code) { - for (auto idx = 0UL; idx < __atexit_lst_cnt; ++idx) { - __atexit_lst_ptr[idx](); - } + for (auto idx = 0UL; idx < __atexit_lst_cnt; ++idx) { + __atexit_lst_ptr[idx](); + } - if (__atexit_cdecl_ptr) __atexit_cdecl_ptr(); + if (__atexit_cdecl_ptr) __atexit_cdecl_ptr(); - exit_(code); - return -1; + exit_(code); + return -1; } #endif // NECTAR_LIBCXX_BASE_PROCESS_H |
