diff options
Diffstat (limited to 'math/yacas/files/patch-embed-example4.c')
-rw-r--r-- | math/yacas/files/patch-embed-example4.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/math/yacas/files/patch-embed-example4.c b/math/yacas/files/patch-embed-example4.c new file mode 100644 index 000000000000..03d31dec111e --- /dev/null +++ b/math/yacas/files/patch-embed-example4.c @@ -0,0 +1,29 @@ +--- embed/example4.c.orig Mon Jul 18 04:54:09 2005 ++++ embed/example4.c Sun Aug 7 22:28:37 2005 +@@ -22,10 +22,12 @@ + } + void runexpr(void* object) + { ++ void* result; ++ + printf("Input> "); + print_expr(object); + printf("\n"); +- void* result = yacas_execute(object); ++ result = yacas_execute(object); + printf("Output> "); + print_expr(result); + printf("\n"); +@@ -35,9 +37,10 @@ + int main(int argc, char** argv) + { + int i; ++ void *input; + yacas_init(); +- +- void *input = ++ ++ input = + yacas_create_sublist( + yacas_link_objects( + yacas_create_atom("+"), |