From 5d85baa270b046eedf472d4cb851fe17fb608fc5 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Mon, 12 Feb 2018 11:23:17 -0500 Subject: indent fixes, nested conditionals --- shell.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'shell.c') diff --git a/shell.c b/shell.c index 0c0c4df..c63b1bc 100644 --- a/shell.c +++ b/shell.c @@ -59,7 +59,7 @@ int main(int argc, char **argv) } iinit(&interp); - inew_cfunc(&interp, "put", s_put); + inew_cfunc(&interp, "print", s_put); inew_cfunc(&interp, "tp", s_type); inew_cfunc(&interp, "q", quit); @@ -75,5 +75,6 @@ int main(int argc, char **argv) } fclose(fp); + iend(&interp); return 0; } -- cgit v1.2.3