diff options
Diffstat (limited to 'lib/libc/gen/arc4random.c')
-rw-r--r-- | lib/libc/gen/arc4random.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/gen/arc4random.c b/lib/libc/gen/arc4random.c index f331687..186efa3 100644 --- a/lib/libc/gen/arc4random.c +++ b/lib/libc/gen/arc4random.c @@ -84,10 +84,10 @@ arc4_stir(as) gettimeofday(&rdat.tv, NULL); rdat.pid = getpid(); - fd = open("/dev/urandom", O_RDONLY, 0); + fd = _libc_open("/dev/urandom", O_RDONLY, 0); if (fd >= 0) { - (void) read(fd, rdat.rnd, sizeof(rdat.rnd)); - close(fd); + (void) _libc_read(fd, rdat.rnd, sizeof(rdat.rnd)); + _libc_close(fd); } /* fd < 0? Ah, what the heck. We'll just take whatever was on the * stack... */ |