brintos

brintos / llvm-project-archived public Read only

0
0
Text · 203 B · cd4d5f1 Raw
11 lines · c
1#include <stdio.h>2#include <stdlib.h>3#include <unistd.h>4 5int main(int argc, char const **argv) {6  // Set breakpoint 1 here7  execl("secondprog", "secondprog", NULL);8  perror("execve");9  abort();10}11