freebsd-src/contrib/mandoc/test-recallocarray.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
132 B
C
Raw Normal View History

2017-07-31 19:17:54 +00:00
#include <stdlib.h>
int
main(void)
{
void *p;
if ((p = calloc(2, 2)) == NULL)
return 1;
return !recallocarray(p, 2, 3, 2);
}