Merge pull request #10371 from geekosaur/sdist-whoopsie
[cabal.git] / cabal-testsuite / PackageTests / CMain / Simple / foo.c
blob41a5c430879f29516f5ba574d0b084fe5f86d488
1 #include <stdio.h>
2 #include "HsFFI.h"
4 #ifdef __GLASGOW_HASKELL__
5 #include "Bar_stub.h"
6 #endif
8 int main(int argc, char **argv) {
9 hs_init(&argc, &argv);
10 bar();
11 printf("Hello world!");
12 return 0;