aboutsummaryrefslogtreecommitdiffstats
path: root/gc/if_not_there.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2003-03-09 19:43:05 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2003-03-09 19:43:05 +0000
commit1dff73dfd6accb9bae971dd0f1ce15a182b0f75b (patch)
tree90442e8c55bb3e5d8aade44a20152d2d8e297608 /gc/if_not_there.c
parentautoconficate (diff)
downloadw3m-1dff73dfd6accb9bae971dd0f1ce15a182b0f75b.tar.gz
w3m-1dff73dfd6accb9bae971dd0f1ce15a182b0f75b.zip
remove gc
Diffstat (limited to 'gc/if_not_there.c')
-rw-r--r--gc/if_not_there.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/gc/if_not_there.c b/gc/if_not_there.c
deleted file mode 100644
index 42dd803..0000000
--- a/gc/if_not_there.c
+++ /dev/null
@@ -1,29 +0,0 @@
-/* Conditionally execute a command based if the file argv[1] doesn't exist */
-/* Except for execvp, we stick to ANSI C. */
-# include "private/gcconfig.h"
-# include <stdio.h>
-# include <stdlib.h>
-# include <unistd.h>
-
-int main(argc, argv, envp)
-int argc;
-char ** argv;
-char ** envp;
-{
- FILE * f;
- if (argc < 3) goto Usage;
- if ((f = fopen(argv[1], "rb")) != 0
- || (f = fopen(argv[1], "r")) != 0) {
- fclose(f);
- return(0);
- }
- printf("^^^^Starting command^^^^\n");
- fflush(stdout);
- execvp(argv[2], argv+2);
- exit(1);
-
-Usage:
- fprintf(stderr, "Usage: %s file_name command\n", argv[0]);
- return(1);
-}
-