summaryrefslogtreecommitdiff
path: root/test/ldso/howdy.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-06-29 22:48:24 +0000
committerEric Andersen <andersen@codepoet.org>2001-06-29 22:48:24 +0000
commitd9ea262db5f34295c2ad4c42559faf958abccf1b (patch)
treeaa29097e1564112b7caa21bfa5ccd1faaf332a98 /test/ldso/howdy.c
parent2f98c4258bada4b7de8dc4401dded43ade7f1c60 (diff)
Add a dlopen test
Diffstat (limited to 'test/ldso/howdy.c')
-rw-r--r--test/ldso/howdy.c7
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);
+}
+