github.com/seh/gb@v0.4.4-0.20160724065125-065d2b2b1ba1/testdata/src/cppmain/main.cpp (about)

     1  typedef int (*intFunc) ();
     2  
     3  extern "C" int bridge_int_func(intFunc f);
     4  
     5  extern "C" int fortytwo();
     6  
     7  int
     8  bridge_int_func(intFunc f)
     9  {
    10  	return f();
    11  }
    12  
    13  int fortytwo()
    14  {
    15      return 42;
    16  }