altos/lambdakey-v1.0: Switch back to command buffered input
[fw/altos] / src / lambdakey-v1.0 / ao_scheme_os.h
index 5641b476c79f537197bd682eef76178e57f30e05..6a2ab819c981f6f59e2c7784faf37cfe2dc051c1 100644 (file)
@@ -30,7 +30,7 @@
 #endif
 
 static inline int
-ao_scheme_getc() {
+_ao_scheme_getc() {
        static uint8_t  at_eol;
        int c;
 
@@ -44,11 +44,7 @@ ao_scheme_getc() {
        return c;
 }
 
-static inline void
-ao_scheme_os_flush(void)
-{
-       flush();
-}
+#define ao_scheme_getc(f) ({ (void) (f); _ao_scheme_getc(); })
 
 static inline void
 ao_scheme_abort(void)