1 2 3 4 5 6 7 8 9 10
#include <stdlib.h> size_t foo(size_t x) { return x * x; } extern "C" void test() { size_t x = foo(10); }