]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/profile/Inputs/instrprof-gcov-execlp.c
Vendor import of compiler-rt trunk r351319 (just before the release_80
[FreeBSD/FreeBSD.git] / test / profile / Inputs / instrprof-gcov-execlp.c
1 #include <unistd.h>
2
3 void func1() {}
4 void func2() {}
5
6 int main(void)
7 {
8   func1();
9
10   execlp("ls", "-l", "-h", (char*)0);
11
12   func2();
13
14   return 0;
15 }