From 1ebf1a1df17afd8b89f84b1928a89069035bf20b Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Sat, 12 Dec 2020 16:15:57 -0800 Subject: [PATCH] meson: Fix reallocarray check reallocarray() is defined in stdlib.h, so that would be right header to check for its presense. Upstream-Status: Submitted [https://github.com/systemd/systemd/pull/17951] Signed-off-by: Khem Raj --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/meson.build +++ b/meson.build @@ -501,7 +501,7 @@ foreach ident : [ #include #include '''], ['explicit_bzero' , '''#include '''], - ['reallocarray', '''#include '''], + ['reallocarray', '''#include '''], ['set_mempolicy', '''#include #include '''], ['get_mempolicy', '''#include