Overview
Comment: | Ensure we include the headers for memcpy() |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
f12cd8142a4c5e136664b12212dc19f0 |
User & Date: | rkeene on 2018-07-01 20:55:12 |
Other Links: | manifest | tags |
Context
2018-07-01
| ||
21:50 | Added validation to verification check-in: 027525ece7 user: rkeene tags: trunk | |
20:55 | Ensure we include the headers for memcpy() check-in: f12cd8142a user: rkeene tags: trunk | |
20:48 | Added start of additional internal functions check-in: eb360ae2a4 user: rkeene tags: trunk | |
Changes
Modified nano.c from [d6f90a57ca] to [6a8716cb4e].
1 2 3 4 5 6 7 8 9 10 | 1 2 3 4 5 6 7 8 9 10 11 | + | #include <tcl.h> #include <stdint.h> #include <limits.h> #include <string.h> #include "tweetnacl.h" #if 0 #include <sys/random.h> void randombytes(uint8_t *buffer, uint64_t length) { ssize_t gr_ret; |
︙ |