test-shared-lib/test_shared_library.c

10 lines
142 B
C
Raw Normal View History

2020-05-16 23:32:17 +02:00
#include "test_shared_library.h"
#include <stdio.h>
#include <stdint.h>
int hello(int param) {
printf("Hello, World!\n");
return param;
}