summaryrefslogtreecommitdiffstats
path: root/test/testapp.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/testapp.c')
-rw-r--r--test/testapp.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/testapp.c b/test/testapp.c
new file mode 100644
index 0000000..77607aa
--- /dev/null
+++ b/test/testapp.c
@@ -0,0 +1,10 @@
+#include <apr.h>
+#include <apr_general.h>
+
+int main(int argc, const char * const * argv, const char * const *env)
+{
+ apr_app_initialize(&argc, &argv, &env);
+
+
+ apr_terminate();
+}