diff options
author | Liav A <liavalb@gmail.com> | 2023-02-24 19:45:37 +0200 |
---|---|---|
committer | Jelle Raaijmakers <jelle@gmta.nl> | 2023-06-04 21:32:34 +0200 |
commit | 1b04726c854f59fbd12d1a0eeef0b21d7aa6b832 (patch) | |
tree | 99d165c41af9c1d94e8372196e9e6516c6101288 /AK/Format.cpp | |
parent | 788022d5d16147b7d149294f9783cb2b0022021f (diff) | |
download | serenity-1b04726c854f59fbd12d1a0eeef0b21d7aa6b832.zip |
Kernel: Move all tasks-related code to the Tasks subdirectory
Diffstat (limited to 'AK/Format.cpp')
-rw-r--r-- | AK/Format.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/AK/Format.cpp b/AK/Format.cpp index 12daeb6815..9835b3ef4e 100644 --- a/AK/Format.cpp +++ b/AK/Format.cpp @@ -16,8 +16,8 @@ #endif #ifdef KERNEL -# include <Kernel/Process.h> -# include <Kernel/Thread.h> +# include <Kernel/Tasks/Process.h> +# include <Kernel/Tasks/Thread.h> # include <Kernel/Time/TimeManagement.h> #else # include <math.h> |