xref: /freebsd/contrib/mandoc/test-recallocarray.c (revision d8ffc21c5ca6f7d4f2d9a65dc6308699af0b6a01)
1 #include <stdlib.h>
2 
3 int
4 main(void)
5 {
6 	void	*p;
7 
8 	if ((p = calloc(2, 2)) == NULL)
9 		return 1;
10 	return !recallocarray(p, 2, 3, 2);
11 }
12