diff options
author | Sam James <sam@gentoo.org> | 2023-01-29 04:19:23 +0000 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2023-01-29 11:32:22 -0600 |
commit | f3be11a00d6875f8e71cf96de553bcda215fbfb5 (patch) | |
tree | 3852b2bb2aa327b1ec133988ec3c105efc10d1fe | |
parent | 406ab2a4ca718b04702ad9512502a78eaacae4ab (diff) |
rc-update: missing includes from IWYU
-rw-r--r-- | src/rc-update/rc-update.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rc-update/rc-update.c b/src/rc-update/rc-update.c index a6dea354..64d781a5 100644 --- a/src/rc-update/rc-update.c +++ b/src/rc-update/rc-update.c @@ -17,7 +17,6 @@ #include <errno.h> #include <getopt.h> -#include <limits.h> #include <stdbool.h> #include <stdio.h> #include <stdlib.h> @@ -29,6 +28,7 @@ #include "rc.h" #include "misc.h" #include "_usage.h" +#include "helpers.h" const char *applet = NULL; const char *extraopts = NULL; |