Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
valgrind
/
b3edb1f0d910f163d4ded4b59d6adc70b3e7f619
/
.
/
none
/
tests
/
system.c
blob: 3b906c36ec239154552da4a8c1a01ddd8cd3f31a [
file
] [
log
] [
blame
]
#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
;
}