aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2016-03-20 21:30:58 +0100
committerCorinna Vinschen <corinna@vinschen.de>2016-03-20 21:30:58 +0100
commit1cca343e4714d11c53e23c8a3a17deba3e5531db (patch)
tree25eaa0669cf6cd7794facd940de83b31fd934e48
parentf7f26f65ab61fe39fe57a9ae38029c4d0cd10653 (diff)
downloadnewlib-1cca343e4714d11c53e23c8a3a17deba3e5531db.zip
newlib-1cca343e4714d11c53e23c8a3a17deba3e5531db.tar.gz
newlib-1cca343e4714d11c53e23c8a3a17deba3e5531db.tar.bz2
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>
-rw-r--r--winsup/cygwin/include/cygwin/stdlib.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/winsup/cygwin/include/cygwin/stdlib.h b/winsup/cygwin/include/cygwin/stdlib.h
index 00615a9..01c5646 100644
--- a/winsup/cygwin/include/cygwin/stdlib.h
+++ b/winsup/cygwin/include/cygwin/stdlib.h
@@ -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 *);