1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 08:34:57 +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

@ -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;
}