mirror of
https://github.com/AdaCore/gpr.git
synced 2026-02-12 12:58:39 -08:00
Adjust the project files to properly install them in share/doc For eng/gpr/gpr-issues#548
14 lines
190 B
C++
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 ();
|
|
}
|