diff options
author | rbb <rbb@13f79535-47bb-0310-9956-ffa450edef68> | 2000-12-03 06:47:28 +0000 |
---|---|---|
committer | rbb <rbb@13f79535-47bb-0310-9956-ffa450edef68> | 2000-12-03 06:47:28 +0000 |
commit | d9028f4f7d2687606c3ed25d2cc19c0798737e3b (patch) | |
tree | f45663148c17fe41cb45e60ceb33a38d7f41d91b /test/mod_test.c | |
parent | 17a3ab2acab6dc90970d352de78ba3da2aa6467c (diff) | |
download | libapr-d9028f4f7d2687606c3ed25d2cc19c0798737e3b.tar.gz |
Get testdso working on Linux again. This should work on all platforms.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60859 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/mod_test.c')
-rw-r--r-- | test/mod_test.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/test/mod_test.c b/test/mod_test.c index 20f6e71d7..fe6974b11 100644 --- a/test/mod_test.c +++ b/test/mod_test.c @@ -2,12 +2,15 @@ int goodbyes = 0; -static void print_hello(void) +void print_hello(void); +int print_goodbye(int reps); + +void print_hello(void) { fprintf(stdout,"Hello - I'm a DSO!\n"); } -static int print_goodbye(int reps) +int print_goodbye(int reps) { int i = 0; for (i = 0;i < reps; i++) { |