summaryrefslogtreecommitdiffstats
path: root/ext/arc4random/arc4random.hh
blob: 6e01712a4f9023eb19d8ca7cd88a52ad36a01c6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once
#include <cstddef>
#include <cinttypes>

#include "config.h"

extern "C"
{
#ifndef HAVE_ARC4RANDOM
  uint32_t arc4random(void);
#endif
#ifndef HAVE_ARC4RANDOM_BUF
  void arc4random_buf(void* buf, size_t nbytes);
#endif
#ifndef HAVE_ARC4RANDOM_UNIFORM
  uint32_t arc4random_uniform(uint32_t upper_bound);
#endif
#ifndef HAVE_EXPLICIT_BZERO
  void explicit_bzero(void*, size_t len);
#endif
}