blob: cd4d5f1068fa29ac6494ad2dc62becfabff2eb20 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int main(int argc, char const **argv) {
// Set breakpoint 1 here
execl("secondprog", "secondprog", NULL);
perror("execve");
abort();
}
|