blob: 5812bcd14604144c5ff0f1ed7861308b159147b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <stdio.h>
#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;
}
|