aboutsummaryrefslogtreecommitdiff
path: root/examples/translator.c
diff options
context:
space:
mode:
authorAleksey Veresov <aleksey@veresov.pro>2021-03-28 17:56:24 +0300
committerAleksey Veresov <aleksey@veresov.pro>2021-03-28 17:56:24 +0300
commit0f0601d64aee294bcd27c757a0cdf7b1ad0e0ba0 (patch)
tree736255d6a983bd03a0ba985541d78bdfc41a062e /examples/translator.c
parent9756ebfe2e6270514f4eb4afb4f9867ae7589e36 (diff)
downloadcsx-0f0601d64aee294bcd27c757a0cdf7b1ad0e0ba0.tar
csx-0f0601d64aee294bcd27c757a0cdf7b1ad0e0ba0.tar.xz
csx-0f0601d64aee294bcd27c757a0cdf7b1ad0e0ba0.zip
csxbind free added.
Diffstat (limited to 'examples/translator.c')
-rw-r--r--examples/translator.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/translator.c b/examples/translator.c
index 6854b42..eebe644 100644
--- a/examples/translator.c
+++ b/examples/translator.c
@@ -134,8 +134,8 @@ int items()
int main()
{
printf("#include <csxbind.h>\n\nint main()\n{\n");
- printf(" init();\n R(L(_do,");
+ printf(" csxbind_init();\n R(L(_do,");
items();
- printf("\n 0));\n return 0;\n}\n");
+ printf("\n 0));\n \n csxbind_free();\n return 0;\n}\n");
return 0;
}