Differences From Artifact [d6f90a57ca]:
- File nano.c — part of check-in [eb360ae2a4] at 2018-07-01 20:48:26 on branch trunk — Added start of additional internal functions (user: rkeene, size: 6496) [annotate] [blame] [check-ins using]
To Artifact [6a8716cb4e]:
- File nano.c — part of check-in [f12cd8142a] at 2018-07-01 20:55:12 on branch trunk — Ensure we include the headers for memcpy() (user: rkeene, size: 6516) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 |
#include <tcl.h>
#include <stdint.h>
#include <limits.h>
#include "tweetnacl.h"
#if 0
#include <sys/random.h>
void randombytes(uint8_t *buffer, uint64_t length) {
ssize_t gr_ret;
| > | 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;
|
| ︙ | ︙ |