From: Sergey Poznyakoff Date: Sat, 5 Feb 2005 10:34:25 +0000 (+0000) Subject: (exec_error, fork_error, dup_error,pipe_error): New functions X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Ftar;a=commitdiff_plain;h=75a16f75a954f16eff5a076aa4bb51ded85e70b7 (exec_error, fork_error, dup_error,pipe_error): New functions --- diff --git a/src/misc.c b/src/misc.c index 0ade200..148d766 100644 --- a/src/misc.c +++ b/src/misc.c @@ -659,6 +659,30 @@ mknod_error (char const *name) call_arg_error ("mknod", name); } +void +exec_error (char const *name) +{ + call_arg_error ("exec", name); +} + +void +fork_error (char const *name) +{ + call_arg_error ("fork", name); +} + +void +dup2_error (char const *name) +{ + call_arg_error ("dup2", name); +} + +void +pipe_error (char const *name) +{ + call_arg_error ("pipe", name); +} + void open_error (char const *name) {