[BACK]Return to if_not_there.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / gc

File: [local] / OpenXM_contrib2 / asir2000 / gc / if_not_there.c (download)

Revision 1.2, Fri Apr 20 07:39:18 2001 UTC (23 years, 1 month ago) by noro
Branch: MAIN
CVS Tags: RELEASE_1_2_1
Changes since 1.1: +4 -1 lines

Upgraded Boehm's GC to 6.0-alpha7.

/* 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);
}