diff options
Diffstat (limited to 'include/LibC++')
| -rw-r--r-- | include/LibC++/__abi.h | 9 | ||||
| -rw-r--r-- | include/LibC++/base_alloc.h | 10 | ||||
| -rw-r--r-- | include/LibC++/base_exception.h | 10 | ||||
| -rw-r--r-- | include/LibC++/base_math.h | 10 | ||||
| -rw-r--r-- | include/LibC++/base_process.h | 10 | ||||
| -rw-r--r-- | include/LibC++/defines.h | 10 | ||||
| -rw-r--r-- | include/LibC++/filesystem.h | 10 | ||||
| -rw-r--r-- | include/LibC++/new.h | 10 | ||||
| -rw-r--r-- | include/LibC++/utility.h | 10 |
9 files changed, 36 insertions, 53 deletions
diff --git a/include/LibC++/__abi.h b/include/LibC++/__abi.h index e1f2310..86e5cda 100644 --- a/include/LibC++/__abi.h +++ b/include/LibC++/__abi.h @@ -1,8 +1,7 @@ -/* ======================================== - - Copyright (C) 2024-2025 Amlal El Mahrouss, licensed under the Apache 2.0 license. - -======================================== */ +// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org) +// Licensed under the Apache License, Version 2.0 (See accompanying +// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0) +// Official repository: https://github.com/nekernel-org/nectar #ifndef NECTAR_LIBCXX_ABI_H #define NECTAR_LIBCXX_ABI_H diff --git a/include/LibC++/base_alloc.h b/include/LibC++/base_alloc.h index f8d9dbc..6c7ad06 100644 --- a/include/LibC++/base_alloc.h +++ b/include/LibC++/base_alloc.h @@ -1,8 +1,7 @@ -/* ======================================== - - Copyright (C) 2024-2025 Amlal El Mahrouss, licensed under the Apache 2.0 license. - -======================================== */ +// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org) +// Licensed under the Apache License, Version 2.0 (See accompanying +// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0) +// Official repository: https://github.com/nekernel-org/nectar #ifndef NECTAR_LIBCXX_BASE_ALLOC_H #define NECTAR_LIBCXX_BASE_ALLOC_H @@ -44,4 +43,3 @@ inline void release_nothrow(KindClass ptr) noexcept { } // namespace std::base_alloc #endif // NECTAR_LIBCXX_BASE_ALLOC_H - diff --git a/include/LibC++/base_exception.h b/include/LibC++/base_exception.h index 6148a90..ddddda9 100644 --- a/include/LibC++/base_exception.h +++ b/include/LibC++/base_exception.h @@ -1,8 +1,7 @@ -/* ======================================== - - Copyright (C) 2024-2025 Amlal El Mahrouss, licensed under the Apache 2.0 license. - -======================================== */ +// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org) +// Licensed under the Apache License, Version 2.0 (See accompanying +// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0) +// Official repository: https://github.com/nekernel-org/nectar #ifndef NECTAR_LIBCXX_BASE_EXCEPTION_H #define NECTAR_LIBCXX_BASE_EXCEPTION_H @@ -38,4 +37,3 @@ inline void __throw_bad_array_new_length(const char* what) { } // namespace std::base_exception::abi #endif // NECTAR_LIBCXX_BASE_EXCEPTION_H - diff --git a/include/LibC++/base_math.h b/include/LibC++/base_math.h index 80b222e..e4370eb 100644 --- a/include/LibC++/base_math.h +++ b/include/LibC++/base_math.h @@ -1,8 +1,7 @@ -/* ======================================== - - Copyright (C) 2024-2025 Amlal El Mahrouss, licensed under the Apache 2.0 license. - -======================================== */ +// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org) +// Licensed under the Apache License, Version 2.0 (See accompanying +// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0) +// Official repository: https://github.com/nekernel-org/nectar #ifndef NECTAR_LIBCXX_BASE_MATH_H #define NECTAR_LIBCXX_BASE_MATH_H @@ -99,4 +98,3 @@ typename<class Result> using callable_type = Result (*)(size_t n, ...); #endif #endif // NECTAR_LIBCXX_BASE_MATH_H - diff --git a/include/LibC++/base_process.h b/include/LibC++/base_process.h index 316b5a0..ccda74c 100644 --- a/include/LibC++/base_process.h +++ b/include/LibC++/base_process.h @@ -1,8 +1,7 @@ -/* ======================================== - - Copyright (C) 2024-2025 Amlal El Mahrouss, licensed under the Apache 2.0 license. - -======================================== */ +// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org) +// Licensed under the Apache License, Version 2.0 (See accompanying +// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0) +// Official repository: https://github.com/nekernel-org/nectar #ifndef NECTAR_LIBCXX_BASE_PROCESS_H #define NECTAR_LIBCXX_BASE_PROCESS_H @@ -46,4 +45,3 @@ __fini_decl() } // namespace std::base_process #endif // NECTAR_LIBCXX_BASE_PROCESS_H - diff --git a/include/LibC++/defines.h b/include/LibC++/defines.h index c631a4a..061769c 100644 --- a/include/LibC++/defines.h +++ b/include/LibC++/defines.h @@ -1,8 +1,7 @@ -/* ======================================== - - Copyright (C) 2024-2025 Amlal El Mahrouss, licensed under the Apache 2.0 license. - -======================================== */ +// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org) +// Licensed under the Apache License, Version 2.0 (See accompanying +// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0) +// Official repository: https://github.com/nekernel-org/nectar #ifndef __NECTAR_DEFINES_H__ #define __NECTAR_DEFINES_H__ @@ -79,4 +78,3 @@ struct nothrow_t; } // namespace std #endif /* __NECTAR_DEFINES_H__ */ - diff --git a/include/LibC++/filesystem.h b/include/LibC++/filesystem.h index d3030b6..9667a78 100644 --- a/include/LibC++/filesystem.h +++ b/include/LibC++/filesystem.h @@ -1,8 +1,7 @@ -/* ======================================== - - Copyright (C) 2024-2025 Amlal El Mahrouss, licensed under the Apache 2.0 license. - -======================================== */ +// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org) +// Licensed under the Apache License, Version 2.0 (See accompanying +// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0) +// Official repository: https://github.com/nekernel-org/nectar #ifndef __NECTAR_FS_H__ #define __NECTAR_FS_H__ @@ -22,4 +21,3 @@ class directory_iterator; #endif #endif // __NECTAR_FS_H__ - diff --git a/include/LibC++/new.h b/include/LibC++/new.h index d40c49a..f7e3abb 100644 --- a/include/LibC++/new.h +++ b/include/LibC++/new.h @@ -1,8 +1,7 @@ -/* ======================================== - - Copyright (C) 2025, Amlal El Mahrouss, licensed under the Apache 2.0 license. - -======================================== */ +// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org) +// Licensed under the Apache License, Version 2.0 (See accompanying +// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0) +// Official repository: https://github.com/nekernel-org/nectar #ifndef NECTAR_LIBCXX_NEW_H #define NECTAR_LIBCXX_NEW_H @@ -66,4 +65,3 @@ void operator delete(void*, size_t) noexcept; void operator delete[](void*) noexcept; #endif // NECTAR_LIBCXX_NEW_H - diff --git a/include/LibC++/utility.h b/include/LibC++/utility.h index b56e95f..45000c3 100644 --- a/include/LibC++/utility.h +++ b/include/LibC++/utility.h @@ -1,8 +1,7 @@ -/* ======================================== - - Copyright (C) 2024-2025 Amlal El Mahrouss, licensed under the Apache 2.0 license. - -======================================== */ +// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org) +// Licensed under the Apache License, Version 2.0 (See accompanying +// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0) +// Official repository: https://github.com/nekernel-org/nectar #ifndef LIBCXX_UTILITY_H #define LIBCXX_UTILITY_H @@ -28,4 +27,3 @@ inline auto move(Args&& arg) -> Args&& { } // namespace std #endif // LIBCXX_UTILITY_H - |
