blob: 3b906c36ec239154552da4a8c1a01ddd8cd3f31a [file] [log] [blame]
#include <stdlib.h>
// This wasn't working at one point, because glibc used a variant of clone()
// to implement system(), which Valgrind didn't accept.
int main(void)
{
system("../../tests/true");
return 0;
}