mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-27 04:52:05 +08:00
11 lines
172 B
C
11 lines
172 B
C
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
int
|
||
|
main (void)
|
||
|
{
|
||
|
char *exec_args[] = { "/bin/ls", "ppp", NULL };
|
||
|
execve (exec_args[0], exec_args, NULL);
|
||
|
}
|