summaryrefslogtreecommitdiff
path: root/dlfcn/defaultmod2.c
diff options
context:
space:
mode:
Diffstat (limited to 'dlfcn/defaultmod2.c')
-rw-r--r--dlfcn/defaultmod2.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/dlfcn/defaultmod2.c b/dlfcn/defaultmod2.c
index 4cacced3b5..c8615e2dc3 100644
--- a/dlfcn/defaultmod2.c
+++ b/dlfcn/defaultmod2.c
@@ -1,12 +1,14 @@
#include <dlfcn.h>
#include <stdio.h>
+extern int found_in_mod1 (void);
int
found_in_mod1 (void)
{
return 1;
}
+extern int found_in_mod2 (void);
int
found_in_mod2 (void)
{
@@ -14,6 +16,7 @@ found_in_mod2 (void)
}
+extern int test_in_mod2 (void *mainp);
int
test_in_mod2 (void *mainp)
{