summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMango0x45 <thomasvoss@live.com>2021-05-01 13:16:40 +0200
committerLinus Groh <mail@linusgroh.de>2021-05-01 14:15:23 +0200
commitec0abec9ee8e0e194b15841a82a53ed40852e745 (patch)
tree407b586c8f2d50579196ab1ce4d4b1b4d9f98f2e
parent56fc949646ee70f30584e8ffbbff77f8b89fa257 (diff)
downloadserenity-ec0abec9ee8e0e194b15841a82a53ed40852e745.zip
Userland: Remove an unused function declaration from tac.
The function declaration seems to have come from an earlier commit. The function is no longer here so there is no reason to keep this around.
-rw-r--r--Userland/Utilities/tac.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/Userland/Utilities/tac.cpp b/Userland/Utilities/tac.cpp
index f2383ccafe..8e13f37439 100644
--- a/Userland/Utilities/tac.cpp
+++ b/Userland/Utilities/tac.cpp
@@ -9,8 +9,6 @@
#include <LibCore/File.h>
#include <unistd.h>
-void print_lines(const Vector<String>& vec);
-
int main(int argc, char** argv)
{
if (pledge("stdio rpath", nullptr) < 0) {