summaryrefslogtreecommitdiffhomepage
path: root/src/kernel/ArchKit/ArchKit.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/ArchKit/ArchKit.h')
-rw-r--r--src/kernel/ArchKit/ArchKit.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/ArchKit/ArchKit.h b/src/kernel/ArchKit/ArchKit.h
index 9d35c445..375c5b44 100644
--- a/src/kernel/ArchKit/ArchKit.h
+++ b/src/kernel/ArchKit/ArchKit.h
@@ -67,7 +67,7 @@ namespace HAL {
} // namespace HAL
} // namespace Kernel
-typedef Kernel::Void (*rt_syscall_proc)(Kernel::VoidPtr);
+using rt_syscall_proc = Kernel::Void (*)(Kernel::VoidPtr);
/// @brief System Call Dispatch.
struct HAL_DISPATCH_ENTRY final {
@@ -81,7 +81,7 @@ struct HAL_DISPATCH_ENTRY final {
operator bool() { return fHooked; }
};
-typedef Kernel::Void (*rt_kerncall_proc)(Kernel::SizeT, Kernel::VoidPtr, Kernel::SizeT);
+using rt_kerncall_proc = Kernel::Void (*)(Kernel::SizeT, Kernel::VoidPtr, Kernel::SizeT);
/// @brief Kernel Call Dispatch.
struct HAL_KERNEL_DISPATCH_ENTRY final {