From 6c63633545c254dc085402e0f927a6826d1dd229 Mon Sep 17 00:00:00 2001 From: Akinori Ito Date: Fri, 9 Nov 2001 04:59:17 +0000 Subject: Updates from 0.2.1 into 0.2.1-inu-1.5 --- gc/if_mach.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'gc/if_mach.c') diff --git a/gc/if_mach.c b/gc/if_mach.c index af01363..fd6009e 100644 --- a/gc/if_mach.c +++ b/gc/if_mach.c @@ -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; @@ -13,6 +15,7 @@ char ** envp; if (strcmp(OS_TYPE, "") != 0 && strcmp(argv[2], "") != 0 && strcmp(OS_TYPE, argv[2]) != 0) return(0); printf("^^^^Starting command^^^^\n"); + fflush(stdout); execvp(argv[3], argv+3); perror("Couldn't execute"); -- cgit v1.2.3