diff options
author | Keith Packard <keithp@keithp.com> | 2017-12-10 18:21:01 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2017-12-11 12:20:25 -0800 |
commit | 655576011e9cc648c7c4bbf51179744a427ff237 (patch) | |
tree | 8569a5c9ea7aea02ce6f80b571ea3f7afccb2a71 /src/lambdakey-v1.0/ao_lambdakey.c | |
parent | 7d77071f5b45632937f262600ca95c7b71f4d3da (diff) |
altos/lambdakey-v1.0: Switch to newlib, get things compiling again
scheme is now way too large to fit on this device; some subsetting is
clearly indicated.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/lambdakey-v1.0/ao_lambdakey.c')
-rw-r--r-- | src/lambdakey-v1.0/ao_lambdakey.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lambdakey-v1.0/ao_lambdakey.c b/src/lambdakey-v1.0/ao_lambdakey.c index 8bd344cf..d0996eb4 100644 --- a/src/lambdakey-v1.0/ao_lambdakey.c +++ b/src/lambdakey-v1.0/ao_lambdakey.c @@ -13,14 +13,14 @@ */ #include <ao.h> -#include <ao_lisp.h> +#include <ao_scheme.h> -static void lisp_cmd() { - ao_lisp_read_eval_print(); +static void scheme_cmd() { + ao_scheme_read_eval_print(); } static const struct ao_cmds blink_cmds[] = { - { lisp_cmd, "l\0Run lisp interpreter" }, + { scheme_cmd, "l\0Run scheme interpreter" }, { 0, 0 } }; |