aboutsummaryrefslogtreecommitdiff
path: root/src/librc/librc-stringlist.c
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2023-01-29 04:15:25 +0000
committerWilliam Hubbs <w.d.hubbs@gmail.com>2023-01-29 11:32:22 -0600
commit5af39444404ad71541d95fcd66abd5c032e4bf07 (patch)
tree351bd665653f3dfc056c44cc4381ad47f0044db9 /src/librc/librc-stringlist.c
parent01bcdb43b69cae8e5570042819c4157a264a074d (diff)
librc: missing includes from IWYU
Diffstat (limited to 'src/librc/librc-stringlist.c')
-rw-r--r--src/librc/librc-stringlist.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/librc/librc-stringlist.c b/src/librc/librc-stringlist.c
index ee352c5f..7fa7bd4d 100644
--- a/src/librc/librc-stringlist.c
+++ b/src/librc/librc-stringlist.c
@@ -15,8 +15,14 @@
* except according to the terms contained in the LICENSE file.
*/
+#include <errno.h>
+#include <stdbool.h>
+#include <stdlib.h>
+#include <string.h>
+
#include "queue.h"
#include "librc.h"
+#include "helpers.h"
RC_STRINGLIST *
rc_stringlist_new(void)