/* * Copyright (c) 2021, the SerenityOS developers. * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include int main(int, char**) { char* cwd = getcwd(nullptr, 0); puts(cwd); free(cwd); return 0; }