Преглед на файлове

(exec_error, fork_error, dup_error,pipe_error): New functions

Sergey Poznyakoff преди 20 години
родител
ревизия
75a16f75a9
променени са 1 файла, в които са добавени 24 реда и са изтрити 0 реда
  1. 24 0
      src/misc.c

+ 24 - 0
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)
 {