diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-09-28 14:45:53 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-09-28 14:45:53 +0200 |
commit | 506090032a07f2f3a74a44d8c8774cbdd252c947 (patch) | |
tree | eb9cb129e39ba43a9460fc203538dfa84d138773 /mwe/dynlink/lib/test.c | |
parent | f3eeedc91a04ca0651e0fe78a2119e7e3e38e391 (diff) |
WIP ExternalProject test
Diffstat (limited to 'mwe/dynlink/lib/test.c')
-rw-r--r-- | mwe/dynlink/lib/test.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mwe/dynlink/lib/test.c b/mwe/dynlink/lib/test.c new file mode 100644 index 0000000..c7a78e4 --- /dev/null +++ b/mwe/dynlink/lib/test.c @@ -0,0 +1,3 @@ +#include <stdio.h> + +void library_function() { printf("%s\n", __PRETTY_FUNCTION__); } |