]> git.ipfire.org Git - thirdparty/elfutils.git/commitdiff
lib: Add missing config.h include to next_prime.c
authorMichael Pratt <mcpratt@pm.me>
Thu, 10 Oct 2024 10:26:54 +0000 (10:26 +0000)
committerMark Wielaard <mark@klomp.org>
Mon, 14 Oct 2024 20:27:45 +0000 (22:27 +0200)
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 <mcpratt@pm.me>
lib/next_prime.c

index f2c921e3a091f2a3897c417a566b88a4a57b1217..97c425e19d143d1dc319a1364a75197f3e973d4a 100644 (file)
    the GNU Lesser General Public License along with this program.  If
    not, see <http://www.gnu.org/licenses/>.  */
 
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
 #include <stddef.h>