summaryrefslogtreecommitdiffstats
path: root/lib/libc/gen/arc4random.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/gen/arc4random.c')
-rw-r--r--lib/libc/gen/arc4random.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/gen/arc4random.c b/lib/libc/gen/arc4random.c
index 186efa3..c0569e5 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 = _libc_open("/dev/urandom", O_RDONLY, 0);
+ fd = _open("/dev/urandom", O_RDONLY, 0);
if (fd >= 0) {
- (void) _libc_read(fd, rdat.rnd, sizeof(rdat.rnd));
- _libc_close(fd);
+ (void) _read(fd, rdat.rnd, sizeof(rdat.rnd));
+ _close(fd);
}
/* fd < 0? Ah, what the heck. We'll just take whatever was on the
* stack... */
OpenPOWER on IntegriCloud