Sign in
android
/
toolchain
/
rustc
/
43f0694b1feb1296004d84509e01177159e71be0
/
.
/
src
/
llvm-project
/
compiler-rt
/
test
/
profile
/
Inputs
/
instrprof-gcov-execlp.c
blob: 5213a5b80360e0c0b29b694f97dd0aeb259b1d19 [
file
] [
log
] [
blame
]
#include
<unistd.h>
void
func1
()
{}
void
func2
()
{}
int
main
(
void
)
{
func1
();
execlp
(
"ls"
,
"-l"
,
"-h"
,
(
char
*)
0
);
func2
();
return
0
;
}