mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-04 10:21:20 +00:00
11 lines
218 B
C
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;
|
|
}
|