blob: 3b906c36ec239154552da4a8c1a01ddd8cd3f31a [file] [log] [blame]
nethercotea3d718e2004-02-15 16:15:05 +00001#include <stdlib.h>
2
3// This wasn't working at one point, because glibc used a variant of clone()
4// to implement system(), which Valgrind didn't accept.
5
6int main(void)
7{
8 system("../../tests/true");
9 return 0;
10}