mirror of
https://github.com/systemd/systemd.git
synced 2025-01-21 22:04:01 +03:00
meson: Fix reallocarray check
reallocarray() is defined in stdlib.h, so that would be right header to check for its presense. Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
parent
4eb105fa4a
commit
5bb20fd3d3
@ -517,7 +517,7 @@ foreach ident : [
|
||||
#include <sys/stat.h>
|
||||
#include <unistd.h>'''],
|
||||
['explicit_bzero' , '''#include <string.h>'''],
|
||||
['reallocarray', '''#include <malloc.h>'''],
|
||||
['reallocarray', '''#include <stdlib.h>'''],
|
||||
['set_mempolicy', '''#include <stdlib.h>
|
||||
#include <unistd.h>'''],
|
||||
['get_mempolicy', '''#include <stdlib.h>
|
||||
|
Loading…
x
Reference in New Issue
Block a user