test-static-lib/test.c
2020-05-17 23:16:40 +02:00

8 lines
191 B
C

#include <test_static_library.h>
#include <stdio.h>
int main(void) {
printf("Program should print \"Hello World <param-2>\" by calling static library function.\n");
hello(12);
return 0;
}