diff options
| author | Keith Packard <keithp@keithp.com> | 2017-11-19 21:07:00 -0800 | 
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2017-11-19 21:07:00 -0800 | 
| commit | 6d2f271a45759bd792d299f04a424d3382ef4798 (patch) | |
| tree | a8a3e2f8538ab70a828f47f3ed87e62e2a0c5adc /src/lisp/ao_lisp_mem.c | |
| parent | 12a1f6ad48f2b924f71239effeb90afca75a090f (diff) | |
altos/lisp: Add floats
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/lisp/ao_lisp_mem.c')
| -rw-r--r-- | src/lisp/ao_lisp_mem.c | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lisp/ao_lisp_mem.c b/src/lisp/ao_lisp_mem.c index f333073a..dc0008c4 100644 --- a/src/lisp/ao_lisp_mem.c +++ b/src/lisp/ao_lisp_mem.c @@ -459,6 +459,7 @@ static const struct ao_lisp_type *ao_lisp_types[AO_LISP_NUM_TYPE] = {  	[AO_LISP_STACK] = &ao_lisp_stack_type,  	[AO_LISP_BOOL] = &ao_lisp_bool_type,  	[AO_LISP_BIGINT] = &ao_lisp_bigint_type, +	[AO_LISP_FLOAT] = &ao_lisp_float_type,  };  static int  | 
