diff options
author | Keith Packard <keithp@keithp.com> | 2016-11-11 00:28:31 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2016-11-17 22:18:39 -0800 |
commit | f7a0de052dd3be1565da882b87cf3fbb6c9084d2 (patch) | |
tree | 82361f99a0f3b1f9acbf1784d4b4f8c0dcba177d /src/test | |
parent | b3e0dcd2c133015d356a6fd5e654a2e5f8b33380 (diff) |
altos/lisp: add length, pack, unpack and flush
lots more builtins
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/ao_lisp_os.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/test/ao_lisp_os.h b/src/test/ao_lisp_os.h index 19bd4f64..c979697e 100644 --- a/src/test/ao_lisp_os.h +++ b/src/test/ao_lisp_os.h @@ -25,6 +25,11 @@ extern int ao_lisp_getc(void); static inline void +ao_lisp_os_flush() { + fflush(stdout); +} + +static inline void ao_lisp_abort(void) { abort(); |