blob: 91a3527d6f307485765874cfd45f7ff12db266a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* Created on Thu Oct 17 08:00:42 CEST 2024
*
* Copyright (c) 2025 Amlal El Mahrouss
*/
#include <libSystem/SystemKit/System.h>
/// @brief Placeholder program.
SInt32 _NeMain(SInt32 argc, Char* argv[]) {
LIBSYS_UNUSED(argc);
LIBSYS_UNUSED(argv);
return EXIT_FAILURE;
}
|