10 lines
142 B
C
10 lines
142 B
C
#include "test_shared_library.h"
|
|
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
|
|
int hello(int param) {
|
|
printf("Hello, World!\n");
|
|
return param;
|
|
}
|