Imported Upstream version 2.5.1
[debian/amanda] / common-src / pipespawn.h
index 4a8a9e954ade9921a387a3a64df3b00f15dca882..8b81f58d9d4755e78d67363c5bebcd8b07a45e8c 100644 (file)
@@ -12,16 +12,11 @@ extern char skip_argument[1];
 #define STDERR_PIPE    (1 << 2)
 #define PASSWD_PIPE    (1 << 3)
 
-int pipespawn P((char *prog, int pipedef,
+pid_t pipespawn(char *prog, int pipedef,
                 int *stdinfd, int *stdoutfd, int *stderrfd,
-                ...));
-int pipespawnv P((char *prog, int pipedef,
+                ...);
+pid_t pipespawnv(char *prog, int pipedef,
                  int *stdinfd, int *stdoutfd, int *stderrfd,
-                 char **my_argv));
-int pipespawnv_passwd P((char *prog, int pipedef,
-                 int *stdinfd, int *stdoutfd, int *stderrfd,
-                 char *passwdvar, int *passwdfd,
-                 char **my_argv));
-
+                 char **my_argv);
 
 #endif /* PIPESPAWN_H */