ezmlmx 0.68
ezmlmx
Loading...
Searching...
No Matches
wrap_execsh.c
Go to the documentation of this file.
1#include "wrap.h"
2
8
9void wrap_execsh(const char *command)
10{
11 const char *args[4];
12 args[0] = "/bin/sh";
13 args[1] = "-c";
14 args[2] = command;
15 args[3] = 0;
16 wrap_execv(args);
17}
void wrap_execv(const char **argv)
Definition wrap_execv.c:25
char * command
void wrap_execsh(const char *command)
Definition wrap_execsh.c:9