summaryrefslogtreecommitdiff
path: root/testsuite/tests/dynlibs/T3807-export.c
blob: ac54fd73cb17ebed9a1c2624d5f1f247c73850c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

#include <HsFFI.h>

void
test_init (void)
{
  static char *argv[] = { "T3807test.so", 0 };
  static char **argv_ = argv;
  static int argc = 1;

  hs_init (&argc, &argv_);
}

void
test_exit (void)
{
  hs_exit ();
}