=================================================================== RCS file: /home/cvs/OpenXM_contrib2/asir2000/gc/if_not_there.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- OpenXM_contrib2/asir2000/gc/if_not_there.c 1999/12/03 07:39:09 1.1 +++ OpenXM_contrib2/asir2000/gc/if_not_there.c 2001/04/20 07:39:18 1.2 @@ -1,7 +1,9 @@ /* Conditionally execute a command based if the file argv[1] doesn't exist */ /* Except for execvp, we stick to ANSI C. */ -# include "gcconfig.h" +# include "private/gcconfig.h" # include +# include +# include int main(argc, argv, envp) int argc; @@ -16,6 +18,7 @@ char ** envp; return(0); } printf("^^^^Starting command^^^^\n"); + fflush(stdout); execvp(argv[2], argv+2); exit(1);