Skip to content

Commit

Permalink
replaced // with /* */ as some compilers crap on this
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@2570 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
adrpo committed Oct 6, 2006
1 parent 6abd674 commit 34de655
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Compiler/runtime/systemimpl.c
Expand Up @@ -528,8 +528,9 @@ RML_BEGIN_LABEL(System__writeFile)
1);
RML_TAILCALLK(rmlFC);
}
// adrpo changed 2006-10-06
// fprintf(file,"%s",data);
/* adrpo changed 2006-10-06
* fprintf(file,"%s",data);
*/
fwrite(RML_STRINGDATA(rmlA1), RML_HDRSTRLEN(RML_GETHDR(rmlA1)), 1, file);
fflush(file);
fclose(file);
Expand Down Expand Up @@ -1730,8 +1731,9 @@ RML_BEGIN_LABEL(System__writeFile)
1);
RML_TAILCALLK(rmlFC);
}
// adrpo changed 2006-10-06
// fprintf(file,"%s",data);
/* adrpo changed 2006-10-06
* fprintf(file,"%s",data);
*/
fwrite(RML_STRINGDATA(rmlA1), RML_HDRSTRLEN(RML_GETHDR(rmlA1)), 1, file);
fflush(file);
fclose(file);
Expand Down

0 comments on commit 34de655

Please sign in to comment.