diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-10-21 20:23:36 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-10-21 20:23:36 +0200 |
| commit | d48cbe75ef29a9c67c9d176bf58e56ea6448fb9e (patch) | |
| tree | 89cbd6b7e23802f92bf3158868f4dc33c088e516 /dev/crt/src | |
| parent | 21b3da78f806d6765f9dffa6a84c21346f171cee (diff) | |
IMP: Major refactor of header and source files extensions.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/crt/src')
| -rw-r--r-- | dev/crt/src/alloca.cc (renamed from dev/crt/src/alloca.cxx) | 2 | ||||
| -rw-r--r-- | dev/crt/src/base_exception.cc (renamed from dev/crt/src/base_exception.cxx) | 2 | ||||
| -rw-r--r-- | dev/crt/src/hal/x86/base_alloc.cc (renamed from dev/crt/src/hal/x86/base_alloc.cxx) | 4 | ||||
| -rw-r--r-- | dev/crt/src/hal/x86/exit.cc (renamed from dev/crt/src/hal/x86/exit.cxx) | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/dev/crt/src/alloca.cxx b/dev/crt/src/alloca.cc index 042eb769..ccee07a7 100644 --- a/dev/crt/src/alloca.cxx +++ b/dev/crt/src/alloca.cc @@ -4,6 +4,6 @@ ------------------------------------------- */
-#include <crt/alloca.hxx>
+#include <crt/alloca.h>
/// @note Just here for building.
diff --git a/dev/crt/src/base_exception.cxx b/dev/crt/src/base_exception.cc index f82d610a..75699f64 100644 --- a/dev/crt/src/base_exception.cxx +++ b/dev/crt/src/base_exception.cc @@ -4,6 +4,6 @@ ------------------------------------------- */
-#include <crt/base_exception.hxx>
+#include <crt/base_exception.h>
/// @note Just here for building.
diff --git a/dev/crt/src/hal/x86/base_alloc.cxx b/dev/crt/src/hal/x86/base_alloc.cc index 55a53c9d..10690d4b 100644 --- a/dev/crt/src/hal/x86/base_alloc.cxx +++ b/dev/crt/src/hal/x86/base_alloc.cc @@ -4,8 +4,8 @@ ------------------------------------------- */ -#include <crt/base_alloc.hxx> -#include <crt/base_exception.hxx> +#include <crt/base_alloc.h> +#include <crt/base_exception.h> #define kAllocSyscallId "mov $10, %%r9\n\t" #define kFreeSyscallId "mov $11, %%r9\n\t" diff --git a/dev/crt/src/hal/x86/exit.cxx b/dev/crt/src/hal/x86/exit.cc index c44c07a4..8ee6744b 100644 --- a/dev/crt/src/hal/x86/exit.cxx +++ b/dev/crt/src/hal/x86/exit.cc @@ -4,7 +4,7 @@ ------------------------------------------- */
-#include <crt/exit.hxx>
+#include <crt/exit.h>
#define kAllocSyscallId "mov $12, %%r9\n\t"
|
