FreeBSD _umtx_op: fix bad wrapper for robust lists
[valgrind.git] / none / tests / system.c
blob3b906c36ec239154552da4a8c1a01ddd8cd3f31a
1 #include <stdlib.h>
3 // This wasn't working at one point, because glibc used a variant of clone()
4 // to implement system(), which Valgrind didn't accept.
6 int main(void)
8 system("../../tests/true");
9 return 0;