summaryrefslogtreecommitdiffhomepage
path: root/dev/LibC++
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-10-21 20:28:30 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-10-21 20:28:30 +0200
commit5d096ddd5228e554a2ef71d34dd469484e50b961 (patch)
tree4f3aaf6409e94a220a06c7236fbe6009f01f625f /dev/LibC++
parent662860f03cdff8ea18b691dca1f3c84a4aaf07d5 (diff)
IMP: Major refactor of header and source files extensions.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/LibC++')
-rw-r--r--dev/LibC++/base_alloc.h2
-rw-r--r--dev/LibC++/base_exception.h4
-rw-r--r--dev/LibC++/defines.h6
-rw-r--r--dev/LibC++/math.h4
4 files changed, 8 insertions, 8 deletions
diff --git a/dev/LibC++/base_alloc.h b/dev/LibC++/base_alloc.h
index 51ed861..1d0fded 100644
--- a/dev/LibC++/base_alloc.h
+++ b/dev/LibC++/base_alloc.h
@@ -6,7 +6,7 @@
#pragma once
-#include <LibC++/defines.hxx>
+#include <LibC++/defines.h>
namespace std::base_alloc
{
diff --git a/dev/LibC++/base_exception.h b/dev/LibC++/base_exception.h
index 9efe209..9d9dcc9 100644
--- a/dev/LibC++/base_exception.h
+++ b/dev/LibC++/base_exception.h
@@ -6,8 +6,8 @@
#pragma once
-#include <LibC++/defines.hxx>
-#include <LibC++/exit.hxx>
+#include <LibC++/defines.h>
+#include <LibC++/exit.h>
namespace std
{
diff --git a/dev/LibC++/defines.h b/dev/LibC++/defines.h
index c65b254..209913a 100644
--- a/dev/LibC++/defines.h
+++ b/dev/LibC++/defines.h
@@ -34,7 +34,7 @@ typedef char* caddr_t;
#endif // !null
#ifdef __GNUC__
-#include <LibC++/alloca.hxx>
+#include <LibC++/alloca.h>
#elif defined(__NDK__)
#define __alloca(sz) __ndk_alloca(sz)
#endif
@@ -94,8 +94,8 @@ typedef union double_cast {
#ifdef __STD_CXX__
-#include <LibC++/base_exception.hxx>
-#include <LibC++/base_alloc.hxx>
+#include <LibC++/base_exception.h>
+#include <LibC++/base_alloc.h>
#endif // ifdef __STD_CXX__
diff --git a/dev/LibC++/math.h b/dev/LibC++/math.h
index b6cd6a8..a09c092 100644
--- a/dev/LibC++/math.h
+++ b/dev/LibC++/math.h
@@ -6,9 +6,9 @@
#pragma once
-#include <LibC++/defines.hxx>
+#include <LibC++/defines.h>
-/// @file Math.hxx
+/// @file Math.h
/// @brief Math functions.
#ifdef __ZKA_USE_DOUBLE__