Added carriage return to end of every file.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@84 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dave Beazley 2000-01-13 17:20:35 +00:00
commit 31ac5eb28e

View file

@ -178,6 +178,7 @@ DOH *SWIG_read_file(FILE *f) {
while (fgets(buffer,4095,f)) {
Append(str,buffer);
}
Append(str,"\n");
return str;
}