=================================================================== RCS file: /home/cvs/OpenXM_contrib2/asir2000/builtin/help.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- OpenXM_contrib2/asir2000/builtin/help.c 2015/08/06 10:01:52 1.9 +++ OpenXM_contrib2/asir2000/builtin/help.c 2015/08/08 14:19:41 1.10 @@ -45,7 +45,7 @@ * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. * - * $OpenXM: OpenXM_contrib2/asir2000/builtin/help.c,v 1.8 2013/07/31 00:38:12 noro Exp $ + * $OpenXM: OpenXM_contrib2/asir2000/builtin/help.c,v 1.9 2015/08/06 10:01:52 fujimoto Exp $ */ #include "ca.h" #include "parse.h" @@ -136,6 +136,9 @@ char *s; fprintf(stderr,"%s\n",f->f.usrf->desc); #endif +#if defined(__MINGW32__) || defined(__MINGW64__) + fflush(stderr); +#endif } } @@ -144,4 +147,7 @@ void ghelp() { for ( i = 0; ghelpstr[i]; i++ ) fprintf(stderr,"%s\n",ghelpstr[i]); +#if defined(__MINGW32__) || defined(__MINGW64__) + fflush(stderr); +#endif }