From 317b8e71a5f6d5a50fd3551bff14c03e79798a93 Mon Sep 17 00:00:00 2001 From: Guilherme Janczak Date: Tue, 30 Jan 2024 07:56:03 +0000 Subject: [PATCH] Delete old /dev/urandom backend for arc4random HaikuOS doesn't need it anymore. --- docs/CHANGELOG.md | 4 +- docs/CONTRIBUTING.md | 5 +-- src/stdlib/arc4random_buf_dev_urandom.c | 59 ------------------------- src/stdlib/meson.build | 40 +++++++---------- 4 files changed, 20 insertions(+), 88 deletions(-) delete mode 100644 src/stdlib/arc4random_buf_dev_urandom.c diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 768ecfe..a8b1a0b 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -18,6 +18,8 @@ Changes in libobsd master: - Add closefrom() - Include io.h in unistd.h on Windows to expose io.h's POSIX functions - Add C++ support -- add timespeccmp(), timespecsub(), and other timeval/timespec macros from +- Add timespeccmp(), timespecsub(), and other timeval/timespec macros from sys/time.h +- Delete old /dev/urandom backend for arc4random now that HaikuOS doesn't need + it anymore diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index f6c4f12..02a0977 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -1,5 +1,5 @@