=================================================================== RCS file: /home/cvs/OpenXM_contrib2/asir2000/gc/if_mach.c,v retrieving revision 1.1 retrieving revision 1.5 diff -u -p -r1.1 -r1.5 --- OpenXM_contrib2/asir2000/gc/if_mach.c 1999/12/03 07:39:09 1.1 +++ OpenXM_contrib2/asir2000/gc/if_mach.c 2003/06/24 05:11:32 1.5 @@ -1,7 +1,9 @@ /* Conditionally execute a command based on machine and OS from gcconfig.h */ -# include "gcconfig.h" +# include "private/gcconfig.h" # include +# include +# include int main(argc, argv, envp) int argc; @@ -12,7 +14,8 @@ char ** envp; if (strcmp(MACH_TYPE, argv[1]) != 0) return(0); if (strcmp(OS_TYPE, "") != 0 && strcmp(argv[2], "") != 0 && strcmp(OS_TYPE, argv[2]) != 0) return(0); - printf("^^^^Starting command^^^^\n"); + fprintf(stderr, "^^^^Starting command^^^^\n"); + fflush(stdout); execvp(argv[3], argv+3); perror("Couldn't execute");