From e490c1b8c858ea42e31ae1a6504c4788e0fb1545 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Thu, 22 Jan 2009 11:35:28 +0100 Subject: Move configure test files to the top-level and share them between s3 and s4. --- tests/shlib.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tests/shlib.c (limited to 'tests/shlib.c') diff --git a/tests/shlib.c b/tests/shlib.c new file mode 100644 index 0000000000..eddb76ff2a --- /dev/null +++ b/tests/shlib.c @@ -0,0 +1,8 @@ +/* a trivial function used to test building shared libraries */ + +int foo(void); + +int foo(void) +{ + return 1; +} -- cgit