diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2019-06-23 21:36:16 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2019-06-23 21:36:16 -0700 |
commit | fc0b68f105a191c7cd4dbb85251ada870119d470 (patch) | |
tree | 614de7d54761c4e3c12b386cd2b0f9bfbea342c3 /lib.c | |
parent | 5fc1472e9ce7ebf3d3d25898f0e6288ffe87d08e (diff) | |
download | txr-fc0b68f105a191c7cd4dbb85251ada870119d470.tar.gz txr-fc0b68f105a191c7cd4dbb85251ada870119d470.tar.bz2 txr-fc0b68f105a191c7cd4dbb85251ada870119d470.zip |
* Makefile (OBJS): New objects chksum.o and chksums/sha256.o.
* chksum.c, chksum.h, chksums/sha256.c, chksums/sha256.h: New files.
* lib.c (init): Call chksum_init.
* txr.1: Documented.
* LICENSE: Add SHA-256 copyright notice.
Diffstat (limited to 'lib.c')
-rw-r--r-- | lib.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -71,6 +71,7 @@ #include "itypes.h" #include "buf.h" #include "ffi.h" +#include "chksum.h" #include "txr.h" #include "debug.h" @@ -12189,6 +12190,7 @@ void init(val *stack_bottom) #endif cadr_init(); time_init(); + chksum_init(); gc_state(gc_save); } |