summaryrefslogtreecommitdiff
path: root/Applications/SystemMonitor
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2020-01-01 18:53:34 +0100
committerAndreas Kling <awesomekling@gmail.com>2020-01-01 18:53:34 +0100
commitfc864601348ee89e57d024c24d423499b496b5ab (patch)
tree549df970d6cc70438e8bf06b68c1c3765b27fa98 /Applications/SystemMonitor
parent38f93ef13b6a2c111c4c99de5c21ccc2d7b90fda (diff)
downloadserenity-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.cpp2
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>