mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 05:14:59 +00:00
false: Port to LibMain
This commit is contained in:
parent
affef5d1a9
commit
f862fabe6e
2 changed files with 3 additions and 2 deletions
|
@ -91,6 +91,7 @@ target_link_libraries(echo LibMain)
|
|||
target_link_libraries(env LibMain)
|
||||
target_link_libraries(errno LibMain)
|
||||
target_link_libraries(expr LibRegex LibMain)
|
||||
target_link_libraries(false LibMain)
|
||||
target_link_libraries(fdtdump LibDeviceTree LibMain)
|
||||
target_link_libraries(fgrep LibMain)
|
||||
target_link_libraries(file LibGfx LibIPC LibCompress LibMain)
|
||||
|
|
|
@ -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 1;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue