Initial import
[samba] / source / tests / shlib.c
diff --git a/source/tests/shlib.c b/source/tests/shlib.c
new file mode 100644 (file)
index 0000000..eddb76f
--- /dev/null
@@ -0,0 +1,8 @@
+/* a trivial function used to test building shared libraries */
+
+int foo(void);
+
+int foo(void)
+{
+       return 1;
+}