blob: 9e019906cec423674688b74c9d2da9a7433810c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* ========================================
Copyright (C) 2025, Amlal El Mahrouss, licensed under the Apache 2.0 license.
======================================== */
#include <libSystem/SystemKit/System.h>
SInt32 _NeMain(SInt32 argc, Char* argv[]) {
LIBSYS_UNUSED(argc);
LIBSYS_UNUSED(argv);
return EXIT_FAILURE;
}
|