14 lines
238 B
C
14 lines
238 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <unistd.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
int main (void)
|
||
|
{
|
||
|
printf ("foll-exec is about to execl(crashme)...\n");
|
||
|
|
||
|
execl ("gdb.multi/crashme",
|
||
|
"gdb.multi/crashme",
|
||
|
(char *)0);
|
||
|
}
|