[BACK]Return to oxgentexi.c CVS log [TXT][DIR] Up to [local] / OpenXM / src / util

Diff for /OpenXM/src/util/oxgentexi.c between version 1.18 and 1.19

version 1.18, 2017/03/28 12:00:04 version 1.19, 2020/10/03 08:24:14
Line 1 
Line 1 
 /*  $OpenXM: OpenXM/src/util/oxgentexi.c,v 1.17 2017/03/19 00:22:16 takayama Exp $ */  /*  $OpenXM: OpenXM/src/util/oxgentexi.c,v 1.18 2017/03/28 12:00:04 takayama Exp $ */
   
 #include <stdio.h>  #include <stdio.h>
 #include <stdlib.h>  #include <stdlib.h>
Line 705  void
Line 705  void
 outputOfExample(char *com) {  outputOfExample(char *com) {
   FILE *fp2;    FILE *fp2;
   int c;    int c;
     int r;
   fp2 = fopen("gentexi-in.tmp","w");    fp2 = fopen("gentexi-in.tmp","w");
   if (fp2 == NULL) {    if (fp2 == NULL) {
     fprintf(stderr,"Cannot open tentexi-in.tmp\n");      fprintf(stderr,"Cannot open tentexi-in.tmp\n");
     exit(10);      exit(10);
   }    }
   system("rm -f gentexi-out.tmp");    r=system("rm -f gentexi-out.tmp");
   fprintf(fp2,"output(\"gentexi-out.tmp\")$\n");    fprintf(fp2,"output(\"gentexi-out.tmp\")$\n");
   fprintf(fp2,"%s\n",com);    fprintf(fp2,"%s\n",com);
   fprintf(fp2,"output()$\n");    fprintf(fp2,"output()$\n");
   fprintf(fp2,"quit;");    fprintf(fp2,"quit;");
   fclose(fp2);    fclose(fp2);
   system("asir <gentexi-in.tmp >/dev/null");    r=system("asir <gentexi-in.tmp >/dev/null");
   
   fp2 = fopen("gentexi-out.tmp","r");    fp2 = fopen("gentexi-out.tmp","r");
   if (fp2 == NULL) {    if (fp2 == NULL) {

Legend:
Removed from v.1.18  
changed lines
  Added in v.1.19

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>