aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2023-01-29 04:18:27 +0000
committerWilliam Hubbs <w.d.hubbs@gmail.com>2023-01-29 11:32:22 -0600
commit1bc87b7a7cc48eaa3f3c6731af935593f9a21050 (patch)
tree3c40372a63a71a697f2b9bb9cdb8fe09e2d65479
parentf3be11a00d6875f8e71cf96de553bcda215fbfb5 (diff)
seedrng: missing includes from IWYU
-rw-r--r--src/seedrng/seedrng.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/seedrng/seedrng.c b/src/seedrng/seedrng.c
index daca8952..5d3b9584 100644
--- a/src/seedrng/seedrng.c
+++ b/src/seedrng/seedrng.c
@@ -30,12 +30,12 @@
#include <errno.h>
#include <endian.h>
#include <stdbool.h>
+#include <stddef.h>
#include <stdint.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
-#include "rc.h"
#include "einfo.h"
#include "helpers.h"
#include "_usage.h"