blob: 3efa53011abeaed08218d3cebef6c072a2185aac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
* Created on Thu Oct 17 08:00:42 CEST 2024
*
* Copyright (c) 2024 Amlal EL Mahrouss
*/
#include <LibSCI/SCI.h>
/// @brief This program loads a program for NeOS.
SInt32 main(SInt32 argc, Char* argv[])
{
ConOut(nullptr, "LD: OpenCC or GCC for Ne needs to be installed.\rLD: This program is present as a placeholder.");
return EXIT_FAILURE;
}
|