summaryrefslogtreecommitdiff
path: root/test/profile/Inputs/instrprof-gcov-execlp.c
blob: 5213a5b80360e0c0b29b694f97dd0aeb259b1d19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <unistd.h>

void func1() {}
void func2() {}

int main(void)
{
  func1();

  execlp("ls", "-l", "-h", (char*)0);

  func2();

  return 0;
}