Hack to make this test work on platforms which aren't Macs. Fixing this
[oota-llvm.git] / test / LLVMC / together.cpp
1 // Check that we can compile files of different types together.
2 // RUN: llvmc %s %p/test_data/together.c -o %t
3 // RUN: ./%t | grep hello
4
5 extern "C" void test();
6
7 int main() {
8   test();
9 }