blob: a705cbc5ba2fe643724811d7775675ba99ae8920 [file] [log] [blame]
#include <memory>
#include "mylib.h"
extern "C" {
DO_EXPORT int foo(void);
}
int foo(void) {
auto bptr = std::make_shared<int>(0);
return *bptr;
}