1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 07:44:59 +00:00

false: Port to LibMain

This commit is contained in:
Lucas CHOLLET 2022-01-13 21:00:09 +01:00 committed by Idan Horowitz
parent affef5d1a9
commit f862fabe6e
2 changed files with 3 additions and 2 deletions

View file

@ -91,6 +91,7 @@ target_link_libraries(echo LibMain)
target_link_libraries(env LibMain) target_link_libraries(env LibMain)
target_link_libraries(errno LibMain) target_link_libraries(errno LibMain)
target_link_libraries(expr LibRegex LibMain) target_link_libraries(expr LibRegex LibMain)
target_link_libraries(false LibMain)
target_link_libraries(fdtdump LibDeviceTree LibMain) target_link_libraries(fdtdump LibDeviceTree LibMain)
target_link_libraries(fgrep LibMain) target_link_libraries(fgrep LibMain)
target_link_libraries(file LibGfx LibIPC LibCompress LibMain) target_link_libraries(file LibGfx LibIPC LibCompress LibMain)

View file

@ -4,9 +4,9 @@
* SPDX-License-Identifier: BSD-2-Clause * SPDX-License-Identifier: BSD-2-Clause
*/ */
#include <sys/cdefs.h> #include <LibMain/Main.h>
int main(int, char**) ErrorOr<int> serenity_main(Main::Arguments)
{ {
return 1; return 1;
} }