instrprof-gcov-execlp.c 148 Bytes Raw Blame History Permalink 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; }