0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-08-27 11:55:17 +02:00
construct/include/rb/arc4random.h
Jason Volk 834964c659 Convert IRCd to C++
Happy 28th birthday. You're all grown up.
2016-07-22 19:46:27 -07:00

17 lines
323 B
C

#pragma once
#define HAVE_RB_ARC4RANDOM_H
#ifdef __cplusplus
extern "C" {
#endif
#if !defined(HAVE_OPENSSL) && !defined(HAVE_GNUTLS) && !defined(HAVE_ARC4RANDOM)
void arc4random_stir(void);
uint32_t arc4random(void);
void arc4random_addrandom(uint8_t *dat, int datlen);
#endif
#ifdef __cplusplus
} // extern "C"
#endif