altos/lambdakey-v1.0: Switch to newlib, get things compiling again
[fw/altos] / src / lambdakey-v1.0 / ao_lambdakey.c
index 8bd344cf57139fe47f9264e7e2f6cf6514e34e2a..d0996eb429c41c0d36a6735676d18ad955675bf1 100644 (file)
  */
 
 #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 }
 };