summaryrefslogtreecommitdiff
path: root/example/test2/foo.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-03-24 12:38:03 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-03-24 12:38:03 +0000
commit376a0e0cc4c3deef4bbea734761ed2cc868d2e7e (patch)
treed6a82488d8403f400035e5acee55cd87afde05ac /example/test2/foo.c
parent527c18b061466a7d0ebde53e761d94775ebc8324 (diff)
downloadbuildsystem-376a0e0cc4c3deef4bbea734761ed2cc868d2e7e.tar.gz
buildsystem-376a0e0cc4c3deef4bbea734761ed2cc868d2e7e.tar.bz2
An example buildsystem, using the core makefiles
svn path=/trunk/tools/buildsystem/; revision=6832
Diffstat (limited to 'example/test2/foo.c')
-rw-r--r--example/test2/foo.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/example/test2/foo.c b/example/test2/foo.c
new file mode 100644
index 0000000..c12a44f
--- /dev/null
+++ b/example/test2/foo.c
@@ -0,0 +1,12 @@
+#include <stdio.h>
+
+#include "foo.h"
+
+int main(void)
+{
+ foo();
+
+ printf("PASS\n");
+
+ return 0;
+}