true: Port to LibMain

This commit is contained in:
Brian Gianforcaro 2022-03-20 13:30:47 -07:00 committed by Andreas Kling
parent 544609b40f
commit 7403342387
2 changed files with 3 additions and 2 deletions

View file

@ -197,6 +197,7 @@ target_link_libraries(timezone LibMain)
target_link_libraries(top LibMain)
target_link_libraries(touch LibMain)
target_link_libraries(tree LibMain)
target_link_libraries(true LibMain)
target_link_libraries(truncate LibMain)
target_link_libraries(tt LibPthread)
target_link_libraries(umount LibMain)

View file

@ -4,9 +4,9 @@
* 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 0;
}