summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-12-04 00:27:16 +0100
committerAndreas Kling <awesomekling@gmail.com>2018-12-04 00:27:16 +0100
commitca6847b5bb6d9b86d5f2123533ebfe510c01d880 (patch)
tree8515f9360e8ade5478edd0acd4d994fe33d8e520 /Userland
parent405383fd2f9757cebd175c5be9cfa65c48fe15f0 (diff)
downloadserenity-ca6847b5bb6d9b86d5f2123533ebfe510c01d880.zip
Import a simple text editor I started working on.
Diffstat (limited to 'Userland')
-rw-r--r--Userland/kill.cpp2
-rw-r--r--Userland/ls.cpp2
-rw-r--r--Userland/sleep.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/Userland/kill.cpp b/Userland/kill.cpp
index 7da6429270..5708c7a8d0 100644
--- a/Userland/kill.cpp
+++ b/Userland/kill.cpp
@@ -2,7 +2,7 @@
#include <stdio.h>
#include <signal.h>
#include <stdlib.h>
-#include <AK/String.h>
+#include <AK/AKString.h>
static unsigned parseUInt(const String& str, bool& ok)
{
diff --git a/Userland/ls.cpp b/Userland/ls.cpp
index fa15d8a23b..741b0a3f1b 100644
--- a/Userland/ls.cpp
+++ b/Userland/ls.cpp
@@ -5,7 +5,7 @@
#include <string.h>
#include <getopt.h>
#include <sys/ioctl.h>
-#include <AK/String.h>
+#include <AK/AKString.h>
#include <AK/Vector.h>
static int do_dir(const char* path);
diff --git a/Userland/sleep.cpp b/Userland/sleep.cpp
index 79cffbfc1b..ba50980723 100644
--- a/Userland/sleep.cpp
+++ b/Userland/sleep.cpp
@@ -1,7 +1,7 @@
#include <unistd.h>
#include <stdio.h>
#include <signal.h>
-#include <AK/String.h>
+#include <AK/AKString.h>
static unsigned parseUInt(const String& str, bool& ok)
{