summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-01-09 09:18:55 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-01-09 09:18:55 +0100
commitf96b4df48feb8df9c57afde5ecac89856f8a69dd (patch)
tree0295adea16cfe40aeff1da411da607525acaf40a /include
parent365e1851ab1b2f2e7eca2fb0697e5b7ff1023b60 (diff)
chore: release prep for Nectar.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include')
-rw-r--r--include/LibNectar/base_process.h18
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