1
0
Fork 0
android_kernel_rockchip_tart/tools/build/feature/test-reallocarray.c
2025-06-27 00:32:42 -05:00

10 lines
152 B
C

// SPDX-License-Identifier: GPL-2.0
#define _GNU_SOURCE
#include <stdlib.h>
int main(void)
{
return !!reallocarray(NULL, 1, 1);
}
#undef _GNU_SOURCE