#include #define SUCC 0 #define ERROR -1 extern int hello_ci_world(void); int main(void) { printf("libhello_ci_world test starting...\n"); hello_ci_world(); //return SUCC; return ERROR; }