Drop redundant arc4random prototypes from cygwin/stdlib.h

Newlib's default stdlib.h now defines these functions so we can
drop them from the Cygwin-specific header.  Remove the arc4random_stir
and arc4random_uniform prototypes entirely.  They shouldn't be used
by applications anymore.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
Corinna Vinschen 2016-03-20 21:30:58 +01:00
parent f7f26f65ab
commit 1cca343e47
1 changed files with 0 additions and 6 deletions

View File

@ -19,12 +19,6 @@ extern "C"
{
#endif
__uint32_t arc4random(void);
void arc4random_addrandom(unsigned char *, int);
void arc4random_buf(void *, size_t);
void arc4random_stir(void);
__uint32_t arc4random_uniform(__uint32_t);
const char *getprogname (void);
void setprogname (const char *);