#ifdef __cplusplus extern "C" { #endif /*! calculate add(a, b) * * @param a the first argument * @param b the second argument * * @return the result */ __attribute__((visibility("default"))) int add(int a, int b); #ifdef __cplusplus } #endif