aboutsummaryrefslogtreecommitdiffstats
path: root/tools/build/feature/test-reallocarray.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/build/feature/test-reallocarray.c')
-rw-r--r--tools/build/feature/test-reallocarray.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/build/feature/test-reallocarray.c b/tools/build/feature/test-reallocarray.c
new file mode 100644
index 000000000000..8170de35150d
--- /dev/null
+++ b/tools/build/feature/test-reallocarray.c
@@ -0,0 +1,8 @@
1// SPDX-License-Identifier: GPL-2.0
2#define _GNU_SOURCE
3#include <stdlib.h>
4
5int main(void)
6{
7 return !!reallocarray(NULL, 1, 1);
8}