Revert r6921. The newline character on OS X is \n, only OS 9 used \r, which we do not target.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@6922 4a71c877-e1ca-e34f-864e-861f7616d084
master
Freddie Witherden 2009-03-29 21:57:24 +00:00 committed by Git SVN Gateway
parent 12eccf9d4c
commit 18870edfd6
1 changed files with 1 additions and 3 deletions

View File

@ -40,10 +40,8 @@
#endif
static const char endl[] =
#if defined(WZ_OS_WIN)
#if defined(WZ_OS_WIN)
"\r\n";
#elif defined(WZ_OS_MAC)
"\r";
#else
"\n";
#endif