clean: remove test to deleted func (reallocarray)

This commit is contained in:
starnakin 2023-07-25 09:39:27 +02:00
parent 15d00356e4
commit cb41e69bdb

View File

@ -1,11 +0,0 @@
main()
{
local tmp;
name = "reallocarray";
tmp = strdup("yo");
if (tmp == NULL)
return 1;
tmp = reallocarray(tmp, strlen(tmp), 5);
test_str(tmp, "yo", "");
}