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

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

8 lines
75 B
C
Raw Normal View History

2014-11-22 18:08:25 +00:00
#include <stdlib.h>
int
main(void)
{
2016-01-15 23:08:59 +00:00
return !reallocarray(NULL, 2, 2);
2014-11-22 18:08:25 +00:00
}