diff options
author | Andreas Kling <awesomekling@gmail.com> | 2020-01-01 18:53:34 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2020-01-01 18:53:34 +0100 |
commit | fc864601348ee89e57d024c24d423499b496b5ab (patch) | |
tree | 549df970d6cc70438e8bf06b68c1c3765b27fa98 /Applications/SystemMonitor | |
parent | 38f93ef13b6a2c111c4c99de5c21ccc2d7b90fda (diff) | |
download | serenity-fc864601348ee89e57d024c24d423499b496b5ab.zip |
AK: Move the userspace SharedBuffer from LibC to AK
This always felt out-of-place in LibC.
Diffstat (limited to 'Applications/SystemMonitor')
-rw-r--r-- | Applications/SystemMonitor/ProcessModel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/SystemMonitor/ProcessModel.cpp b/Applications/SystemMonitor/ProcessModel.cpp index f9190d442a..93ea6a006c 100644 --- a/Applications/SystemMonitor/ProcessModel.cpp +++ b/Applications/SystemMonitor/ProcessModel.cpp @@ -3,7 +3,7 @@ #include <AK/JsonArray.h> #include <AK/JsonObject.h> #include <AK/JsonValue.h> -#include <LibC/SharedBuffer.h> +#include <AK/SharedBuffer.h> #include <LibCore/CProcessStatisticsReader.h> #include <fcntl.h> #include <stdio.h> |