Commit b44be3e9 authored by Martin Pool's avatar Martin Pool

Fix prototype.

parent fc0302cf
...@@ -94,7 +94,7 @@ pid_t piped_child(char **command, int *f_in, int *f_out) ...@@ -94,7 +94,7 @@ pid_t piped_child(char **command, int *f_in, int *f_out)
} }
pid_t local_child(int argc, char **argv,int *f_in,int *f_out, pid_t local_child(int argc, char **argv,int *f_in,int *f_out,
int (*child_main)(int, char **)) int (*child_main)(int, char*[]))
{ {
pid_t pid; pid_t pid;
int to_child_pipe[2]; int to_child_pipe[2];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment