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 @@
+// SPDX-License-Identifier: GPL-2.0
+#define _GNU_SOURCE
+#include <stdlib.h>
+
+int main(void)
+{
+ return !!reallocarray(NULL, 1, 1);
+}