0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-18 06:28:53 +02:00
construct/include/rb/arc4random.h

18 lines
323 B
C
Raw Normal View History

#pragma once
#define HAVE_RB_ARC4RANDOM_H
#ifdef __cplusplus
extern "C" {
#endif
2008-07-30 00:41:27 +02:00
#if !defined(HAVE_OPENSSL) && !defined(HAVE_GNUTLS) && !defined(HAVE_ARC4RANDOM)
2008-07-30 00:41:27 +02:00
void arc4random_stir(void);
uint32_t arc4random(void);
void arc4random_addrandom(uint8_t *dat, int datlen);
#endif
#ifdef __cplusplus
} // extern "C"
#endif