diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2022-04-21 14:34:29 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2022-04-24 10:03:59 +0200 |
commit | 05c366a56095d116f0f8f331f3d494d9580baf33 (patch) | |
tree | 8b7b583ec3ba548f16a0eab54c2a5e88e81ff86b | |
parent | f9ea8ba5ed6d43b8b233eac433521eb158e359d1 (diff) | |
download | busybox-w32-05c366a56095d116f0f8f331f3d494d9580baf33.tar.gz busybox-w32-05c366a56095d116f0f8f331f3d494d9580baf33.tar.bz2 busybox-w32-05c366a56095d116f0f8f331f3d494d9580baf33.zip |
seedrng: prune header includes
Remove redundant includes.
We have platform specific handling in libbb.h and platform.h so we can
handle quirks in a central place.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
-rw-r--r-- | util-linux/seedrng.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/util-linux/seedrng.c b/util-linux/seedrng.c index 374e7f676..f7434fb79 100644 --- a/util-linux/seedrng.c +++ b/util-linux/seedrng.c | |||
@@ -44,21 +44,7 @@ | |||
44 | 44 | ||
45 | #include <linux/random.h> | 45 | #include <linux/random.h> |
46 | #include <sys/random.h> | 46 | #include <sys/random.h> |
47 | #include <sys/ioctl.h> | ||
48 | #include <sys/file.h> | 47 | #include <sys/file.h> |
49 | #include <sys/stat.h> | ||
50 | #include <sys/types.h> | ||
51 | #include <fcntl.h> | ||
52 | #include <poll.h> | ||
53 | #include <unistd.h> | ||
54 | #include <time.h> | ||
55 | #include <errno.h> | ||
56 | #include <endian.h> | ||
57 | #include <stdbool.h> | ||
58 | #include <stdint.h> | ||
59 | #include <string.h> | ||
60 | #include <stdio.h> | ||
61 | #include <stdlib.h> | ||
62 | 48 | ||
63 | #ifndef GRND_INSECURE | 49 | #ifndef GRND_INSECURE |
64 | #define GRND_INSECURE 0x0004 /* Apparently some headers don't ship with this yet. */ | 50 | #define GRND_INSECURE 0x0004 /* Apparently some headers don't ship with this yet. */ |