diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-05-02 12:10:43 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-05-02 12:10:43 -0400 |
commit | f996ddede8ad8df6a6b475185b5384366f0dd6c9 (patch) | |
tree | b2b7e5a618878c8ac7026aa98312d6f9697bc9f6 /tests/test.c | |
parent | 4b3399b59d17ed32c8c2800267b8c59fd0378f21 (diff) |
More FFI compiler options
Diffstat (limited to 'tests/test.c')
-rw-r--r-- | tests/test.c | 5 |
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; +} |