summaryrefslogtreecommitdiff
path: root/testsuite/tests/package/T20010/T20010_c.cpp
blob: 582c561b3fb43551757f1d5d3be9d65630972326 (plain)
1
2
3
4
5
6
7
#include <iostream>

extern "C" {
void hello(int x) {
    std::cout << "hello world " << x << std::endl;
}
}