diff options
Diffstat (limited to 'test/ldso/howdy.c')
-rw-r--r-- | test/ldso/howdy.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/ldso/howdy.c b/test/ldso/howdy.c new file mode 100644 index 000000000..00a144b30 --- /dev/null +++ b/test/ldso/howdy.c @@ -0,0 +1,7 @@ +#include <stdio.h> + +int howdy(const char *s) +{ + return printf("howdy: %s\n", s); +} + |