summaryrefslogtreecommitdiff
path: root/tests/test.c
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2009-05-02 12:10:43 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2009-05-02 12:10:43 -0400
commitf996ddede8ad8df6a6b475185b5384366f0dd6c9 (patch)
treeb2b7e5a618878c8ac7026aa98312d6f9697bc9f6 /tests/test.c
parent4b3399b59d17ed32c8c2800267b8c59fd0378f21 (diff)
More FFI compiler options
Diffstat (limited to 'tests/test.c')
-rw-r--r--tests/test.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/test.c b/tests/test.c
index b4f23670..1249721e 100644
--- a/tests/test.c
+++ b/tests/test.c
@@ -20,3 +20,8 @@ uw_Basis_unit uw_Test_print(uw_context ctx) {
printf("Hi there!\n");
return uw_unit_v;
}
+
+uw_Basis_unit uw_Test_foo(uw_context ctx) {
+ printf("FOO!\n");
+ return uw_unit_v;
+}