diff --git a/Userland/Shell/Builtin.cpp b/Userland/Shell/Builtin.cpp index ea5b04cf805..baf863c88f1 100644 --- a/Userland/Shell/Builtin.cpp +++ b/Userland/Shell/Builtin.cpp @@ -25,6 +25,11 @@ extern char** environ; namespace Shell { +int Shell::builtin_noop(int, const char**) +{ + return 0; +} + int Shell::builtin_dump(int argc, const char** argv) { if (argc != 2) @@ -1142,6 +1147,9 @@ bool Shell::run_builtin(const AST::Command& command, const NonnullRefPtrVector