summaryrefslogtreecommitdiff
path: root/testsuite/tests/rts/T20199.cpp
blob: 00a3345dbd11bf19670ab02e5332edeff678b89a (plain)
1
2
3
4
5
6
7
8
9
10
/* verify that Rts.h can be parsed as a C++ header */
extern "C" {
#include "Rts.h"
}

extern "C"
int main(int argc, char *argv[]) {
    debugBelch("Hello world!");
    return 0;
}