blob: a975fef3cd1b880265771cefc716431438f9fad0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* Arc4 random number generator for OpenBSD.
* Copyright 1996 David Mazieres <dm@lcs.mit.edu>.
*
* Modification and redistribution in source and binary forms is
* permitted provided that due credit is given to the author and the
* OpenBSD project by leaving this copyright notice intact.
*/
#ifndef ARC4RANDOM_H
#define ARC4RANDOM_H
#include <stdint.h>
uint32_t arc4random(void);
#endif
|