From 8d7a7449bd7176d41d202843027a06e6bf21d6f1 Mon Sep 17 00:00:00 2001
From: hololeap <hololeap@protonmail.com>
Date: Sun, 3 Nov 2024 16:26:11 -0700
Subject: [PATCH 1/1] Add missing #include <stdlib.h> header

Fixes "QA Notice: Found the following implicit function declarations in
configure logs"

Signed-off-by: hololeap <hololeap@protonmail.com>
--- a/m4/fp_leading_underscore.m4
+++ b/m4/fp_leading_underscore.m4
@@ -32,6 +32,8 @@ struct nlist xYzzY1[] = {{"xYzzY1", 0},{0}};
 struct nlist xYzzY2[] = {{"_xYzzY2", 0},{0}};
 #endif
 
+#include <stdlib.h>
+
 int main(int argc, char **argv)
 {
 #if defined(HAVE_NLIST_H)
-- 
2.45.2

