xref: /netbsd-src/external/bsd/mdocml/dist/test-recallocarray.c (revision c9bcef0391a5afc0280459d5c16c26ace267c496)
1 #include <stdlib.h>
2 
3 int
main(void)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