summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/cvs/macintosh/run.c
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/usr.bin/cvs/macintosh/run.c')
-rw-r--r--gnu/usr.bin/cvs/macintosh/run.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/usr.bin/cvs/macintosh/run.c b/gnu/usr.bin/cvs/macintosh/run.c
new file mode 100644
index 00000000000..bdc59160398
--- /dev/null
+++ b/gnu/usr.bin/cvs/macintosh/run.c
@@ -0,0 +1,19 @@
+/*
+ * run.c --- stubs for unused cvs functions in 'src/run.c'
+ *
+ * MDLadwig <mike@twinpeaks.prc.com> --- Nov 1995
+ */
+
+#include <cvs.h>
+#include <stdio.h>
+
+void run_arg (const char *s) { }
+void run_print (FILE * fp) { }
+void run_setup (const char *fmt,...) { }
+void run_args (const char *fmt,...) { }
+int run_exec (char *stin, char *stout, char *sterr, int flags) { return 0; }
+FILE * Popen (const char *, const char *) { return NULL; }
+int pclose(FILE *fp) { return 0; }
+int piped_child (char **, int *, int *) { return 0; }
+void close_on_exec (int) { }
+int filter_stream_through_program (int, int, char **, pid_t *) { return 0; }