Changed multi-line C comments into another style.

The left side doesn't look unbalanced.
This commit is contained in:
Greg King
2014-06-30 05:10:35 -04:00
parent 132d57f1ad
commit 0390c34e88
502 changed files with 8869 additions and 8884 deletions

View File

@@ -1,9 +1,9 @@
/*
* ftell.c
*
* Christian Groessler, 2000-08-07
* Ullrich von Bassewitz, 2004-05-13
*/
** ftell.c
**
** Christian Groessler, 2000-08-07
** Ullrich von Bassewitz, 2004-05-13
*/
@@ -34,8 +34,8 @@ long __fastcall__ ftell (register FILE* f)
pos = lseek (f->f_fd, 0L, SEEK_CUR);
/* If we didn't have an error, correct the return value in case we have
* a pushed back character.
*/
** a pushed back character.
*/
if (pos > 0 && (f->f_flags & _FPUSHBACK)) {
--pos;
}