summaryrefslogtreecommitdiffhomepage
path: root/public/tools/cc/src/CommandLine.cc
blob: 62757c4392e644bfdecc28e559053863cbe20278 (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-2025 Amlal El Mahrouss
 */

#include <libSystem/SystemKit/System.h>

/// @brief Placeholder program.

SInt32 main(SInt32 argc, Char* argv[]) {
  PrintOut(nullptr,
           "cc: A C++ compiler to be installed.\rcc: This program is present as a placeholder.");
  return EXIT_FAILURE;
}