Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
valgrind
/
f6a1d504b5a01d14e149b631b5c666bc6a4f1d3f
/
.
/
memcheck
/
tests
/
execve2.c
blob: c3eae2c2faa59af46befb77f0f37653c3d08fe0c [
file
] [
log
] [
blame
]
nethercote
f6a1d50
2004-08-09 12:21:57 +0000
[
diff
] [
blame^
]
1
#include
<assert.h>
2
#include
<unistd.h>
3
4
int
main
(
void
)
5
{
6
execve
(
NULL
,
NULL
,
NULL
);
7
execve
(
"../../tests/true"
,
NULL
,
NULL
);
8
assert
(
0
);
// shouldn't get here
9
}