From f96b4df48feb8df9c57afde5ecac89856f8a69dd Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Fri, 9 Jan 2026 09:18:55 +0100 Subject: chore: release prep for Nectar. Signed-off-by: Amlal El Mahrouss --- include/LibNectar/base_process.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'include/LibNectar') 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 -- cgit v1.2.3