Nicholas Nethercote 3b2f2b7d57 Fix so that new versions of system (using clone()) work.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2253
2004-02-15 16:15:05 +00:00

11 lines
218 B
C

#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;
}