#ifndef __LIB1_H_ #define __LIB1_H_ #if defined(__cplusplus) extern "C" { #endif int add(int a,int b); int sub(int a,int b); int div(int a,int b); void say_hi(); #if defined(__cplusplus) } #endif #endif