From: Michael Pratt Date: Thu, 10 Oct 2024 10:26:54 +0000 (+0000) Subject: lib: Add missing config.h include to next_prime.c X-Git-Tag: elfutils-0.192~23 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c981e61aa301d389f18df5fd279c1ca4d39d38a0;p=thirdparty%2Felfutils.git lib: Add missing config.h include to next_prime.c This is the last remaining C source file as of this commit without the standard conditional inclusion of config.h as the very first header. * lib/next_prime.c: add missing config.h header. Signed-off-by: Michael Pratt --- diff --git a/lib/next_prime.c b/lib/next_prime.c index f2c921e3..97c425e1 100644 --- a/lib/next_prime.c +++ b/lib/next_prime.c @@ -27,6 +27,10 @@ the GNU Lesser General Public License along with this program. If not, see . */ +#ifdef HAVE_CONFIG_H +# include +#endif + #include