comparison tests/test.c @ 766:df09c95085f8

More FFI compiler options
author Adam Chlipala <adamc@hcoop.net>
date Sat, 02 May 2009 12:10:43 -0400
parents a28982de5645
children eac1974924bb
comparison
equal deleted inserted replaced
765:a28982de5645 766:df09c95085f8
18 18
19 uw_Basis_unit uw_Test_print(uw_context ctx) { 19 uw_Basis_unit uw_Test_print(uw_context ctx) {
20 printf("Hi there!\n"); 20 printf("Hi there!\n");
21 return uw_unit_v; 21 return uw_unit_v;
22 } 22 }
23
24 uw_Basis_unit uw_Test_foo(uw_context ctx) {
25 printf("FOO!\n");
26 return uw_unit_v;
27 }