Files
gpr/examples/gprbuild/ada_cpp/src1/cpp_main.cpp
Jerome Lambourg 76c10c296d Add the examples from the gprbuild repository
Adjust the project files to properly install them in share/doc

For eng/gpr/gpr-issues#548
2025-03-10 16:16:29 +00:00

14 lines
190 B
C++

#include <iostream>
extern "C" void call_cpp ();
extern "C" void adainit ();
extern "C" void adafinal ();
using namespace std;
int main ()
{
adainit ();
call_cpp ();
adafinal ();
}