]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/mandoc/test-recallocarray.c
MFS r353184, r353186, r353188, r353190, r353192, r353194, r353196, r353198,
[FreeBSD/FreeBSD.git] / contrib / mandoc / test-recallocarray.c
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 }