diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-02-11 00:01:05 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-02-11 00:01:05 -0800 |
commit | ef9d1a2ddb3cd1b237b82c7dda092527a2e7bb00 (patch) | |
tree | 9d86a1d612f34001934c116ad9c4b3132b482c45 /eval.h | |
parent | 656a6d4b2efc283b31d540abf87408a67287bbdb (diff) | |
download | txr-ef9d1a2ddb3cd1b237b82c7dda092527a2e7bb00.tar.gz txr-ef9d1a2ddb3cd1b237b82c7dda092527a2e7bb00.tar.bz2 txr-ef9d1a2ddb3cd1b237b82c7dda092527a2e7bb00.zip |
* Makefile (OBJS): New object file, combi.o.
* dep.mk: Updated.
* eval.c: Removed combination and permutation functions; they
now reside in combi.c.
(generate): Changed from static to external linkage.
* eval.h (generate): Declared.
* combi.c: New file.
* combi.h: New file.
* txr.vim: Regenerated.
Diffstat (limited to 'eval.h')
-rw-r--r-- | eval.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -42,5 +42,6 @@ val expand(val form); val expand_forms(val forms); val bindable(val obj); val mapcarv(val fun, val list_of_lists); +val generate(val while_pred, val gen_fun); void eval_init(void); |