Blame


1 8951cb19 2022-07-01 op #ifdef __NetBSD__
2 8951cb19 2022-07-01 op # define _OPENBSD_SOURCE
3 8951cb19 2022-07-01 op #endif
4 8951cb19 2022-07-01 op #include <stdlib.h>
5 8951cb19 2022-07-01 op
6 8951cb19 2022-07-01 op int
7 8951cb19 2022-07-01 op main(void)
8 8951cb19 2022-07-01 op {
9 8951cb19 2022-07-01 op return !reallocarray(NULL, 2, 2);
10 8951cb19 2022-07-01 op }