diff options
Diffstat (limited to 'tests/shlib_test/hellolib.c')
-rwxr-xr-x | tests/shlib_test/hellolib.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/shlib_test/hellolib.c b/tests/shlib_test/hellolib.c new file mode 100755 index 00000000..88d65cee --- /dev/null +++ b/tests/shlib_test/hellolib.c @@ -0,0 +1,3 @@ +extern char* get_hello_msg() { + return "Hello, world!"; +} |