Skip to content

Commit

Permalink
Use block comment in C code
Browse files Browse the repository at this point in the history
  • Loading branch information
mantognini committed Jan 25, 2017
1 parent 0733507 commit f317373
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion library/leon/io/FileInputStream.scala
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ object FileInputStream {
"""
|static FILE* __FUNCTION__(char* filename, void* unused) {
| FILE* this = fopen(filename, "r");
| // this == NULL on failure
| /* this == NULL on failure */
| return this;
|}
"""
Expand Down
2 changes: 1 addition & 1 deletion library/leon/io/FileOutputStream.scala
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ object FileOutputStream {
"""
|static FILE* __FUNCTION__(char* filename) {
| FILE* this = fopen(filename, "w");
| // this == NULL on failure
| /* this == NULL on failure */
| return this;
|}
"""
Expand Down

0 comments on commit f317373

Please sign in to comment.