From ec0abec9ee8e0e194b15841a82a53ed40852e745 Mon Sep 17 00:00:00 2001 From: Mango0x45 Date: Sat, 1 May 2021 13:16:40 +0200 Subject: [PATCH] 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. --- Userland/Utilities/tac.cpp | 2 -- 1 file changed, 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 #include -void print_lines(const Vector& vec); - int main(int argc, char** argv) { if (pledge("stdio rpath", nullptr) < 0) {