mirror of
https://github.com/ioacademy-jikim/debugging
synced 2025-06-08 08:26:14 +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;
|
|
}
|