diff options
Diffstat (limited to '04_dynld_nostd/libgreet.c')
-rw-r--r-- | 04_dynld_nostd/libgreet.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/04_dynld_nostd/libgreet.c b/04_dynld_nostd/libgreet.c new file mode 100644 index 0000000..f2a96a3 --- /dev/null +++ b/04_dynld_nostd/libgreet.c @@ -0,0 +1,9 @@ +// Copyright (c) 2020 Johannes Stoelp + +const char* get_greet() { + return "Hello from libgreet.so!"; +} + +const char* get_greet2() { + return "Hello 2 from libgreet.so!"; +} |